src/Entity/ComReferenciasComerciales.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ComReferenciasComercialesRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassComReferenciasComercialesRepository::class)]
  7. class ComReferenciasComerciales
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255nullabletrue)]
  14.     private ?string $empresa null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $numeroIdentificacion null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $direccion null;
  19.     #[ORM\ManyToOne(inversedBy'comReferenciasComerciales')]
  20.     private ?ParEstado $estadoSeccion null;
  21.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  22.     private ?\DateTimeInterface $createAt null;
  23.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  24.     private ?\DateTimeInterface $updateAy null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $createUser null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $updateUser null;
  29.     #[ORM\ManyToOne(inversedBy'comReferenciasComerciales')]
  30.     private ?ComCircular170YPoderes $comCircular170 null;
  31.     public function getId(): ?int
  32.     {
  33.         return $this->id;
  34.     }
  35.     public function getEmpresa(): ?string
  36.     {
  37.         return $this->empresa;
  38.     }
  39.     public function setEmpresa(?string $empresa): static
  40.     {
  41.         $this->empresa $empresa;
  42.         return $this;
  43.     }
  44.     public function getNumeroIdentificacion(): ?string
  45.     {
  46.         return $this->numeroIdentificacion;
  47.     }
  48.     public function setNumeroIdentificacion(?string $numeroIdentificacion): static
  49.     {
  50.         $this->numeroIdentificacion $numeroIdentificacion;
  51.         return $this;
  52.     }
  53.     public function getDireccion(): ?string
  54.     {
  55.         return $this->direccion;
  56.     }
  57.     public function setDireccion(?string $direccion): static
  58.     {
  59.         $this->direccion $direccion;
  60.         return $this;
  61.     }
  62.     public function getEstadoSeccion(): ?ParEstado
  63.     {
  64.         return $this->estadoSeccion;
  65.     }
  66.     public function setEstadoSeccion(?ParEstado $estadoSeccion): static
  67.     {
  68.         $this->estadoSeccion $estadoSeccion;
  69.         return $this;
  70.     }
  71.     public function getCreateAt(): ?\DateTimeInterface
  72.     {
  73.         return $this->createAt;
  74.     }
  75.     public function setCreateAt(?\DateTimeInterface $createAt): static
  76.     {
  77.         $this->createAt $createAt;
  78.         return $this;
  79.     }
  80.     public function getUpdateAy(): ?\DateTimeInterface
  81.     {
  82.         return $this->updateAy;
  83.     }
  84.     public function setUpdateAy(?\DateTimeInterface $updateAy): static
  85.     {
  86.         $this->updateAy $updateAy;
  87.         return $this;
  88.     }
  89.     public function getCreateUser(): ?string
  90.     {
  91.         return $this->createUser;
  92.     }
  93.     public function setCreateUser(?string $createUser): static
  94.     {
  95.         $this->createUser $createUser;
  96.         return $this;
  97.     }
  98.     public function getUpdateUser(): ?string
  99.     {
  100.         return $this->updateUser;
  101.     }
  102.     public function setUpdateUser(?string $updateUser): static
  103.     {
  104.         $this->updateUser $updateUser;
  105.         return $this;
  106.     }
  107.     public function getComCircular170(): ?ComCircular170YPoderes
  108.     {
  109.         return $this->comCircular170;
  110.     }
  111.     public function setComCircular170(?ComCircular170YPoderes $comCircular170): static
  112.     {
  113.         $this->comCircular170 $comCircular170;
  114.         return $this;
  115.     }
  116. }