src/Entity/ComReferenciasBancaria.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ComReferenciasBancariaRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassComReferenciasBancariaRepository::class)]
  7. class ComReferenciasBancaria
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255nullabletrue)]
  14.     private ?string $entidadFinanciera null;
  15.     #[ORM\ManyToOne(inversedBy'comReferenciasBancarias')]
  16.     private ?ParEstado $estadoSeccion null;
  17.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  18.     private ?\DateTimeInterface $createAt null;
  19.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  20.     private ?\DateTimeInterface $updateAt null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $createUser null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $updateUser null;
  25.     #[ORM\ManyToOne(inversedBy'comReferenciasBancarias')]
  26.     private ?ComCircular170YPoderes $comCircular170 null;
  27.     public function getId(): ?int
  28.     {
  29.         return $this->id;
  30.     }
  31.     public function getEntidadFinanciera(): ?string
  32.     {
  33.         return $this->entidadFinanciera;
  34.     }
  35.     public function setEntidadFinanciera(?string $entidadFinanciera): static
  36.     {
  37.         $this->entidadFinanciera $entidadFinanciera;
  38.         return $this;
  39.     }
  40.     public function getEstadoSeccion(): ?ParEstado
  41.     {
  42.         return $this->estadoSeccion;
  43.     }
  44.     public function setEstadoSeccion(?ParEstado $estadoSeccion): static
  45.     {
  46.         $this->estadoSeccion $estadoSeccion;
  47.         return $this;
  48.     }
  49.     public function getCreateAt(): ?\DateTimeInterface
  50.     {
  51.         return $this->createAt;
  52.     }
  53.     public function setCreateAt(?\DateTimeInterface $createAt): static
  54.     {
  55.         $this->createAt $createAt;
  56.         return $this;
  57.     }
  58.     public function getUpdateAt(): ?\DateTimeInterface
  59.     {
  60.         return $this->updateAt;
  61.     }
  62.     public function setUpdateAt(?\DateTimeInterface $updateAt): static
  63.     {
  64.         $this->updateAt $updateAt;
  65.         return $this;
  66.     }
  67.     public function getCreateUser(): ?string
  68.     {
  69.         return $this->createUser;
  70.     }
  71.     public function setCreateUser(?string $createUser): static
  72.     {
  73.         $this->createUser $createUser;
  74.         return $this;
  75.     }
  76.     public function getUpdateUser(): ?string
  77.     {
  78.         return $this->updateUser;
  79.     }
  80.     public function setUpdateUser(?string $updateUser): static
  81.     {
  82.         $this->updateUser $updateUser;
  83.         return $this;
  84.     }
  85.     public function getComCircular170(): ?ComCircular170YPoderes
  86.     {
  87.         return $this->comCircular170;
  88.     }
  89.     public function setComCircular170(?ComCircular170YPoderes $comCircular170): static
  90.     {
  91.         $this->comCircular170 $comCircular170;
  92.         return $this;
  93.     }
  94. }