src/Entity/ComClientesSeleccionados.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ComClientesSeleccionadosRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassComClientesSeleccionadosRepository::class)]
  7. class ComClientesSeleccionados
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  14.     private ?\DateTimeInterface $createAt null;
  15.     #[ORM\Column(length255)]
  16.     private ?string $createUser null;
  17.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  18.     private ?\DateTimeInterface $updateAt null;
  19.     #[ORM\Column(length255)]
  20.     private ?string $updateUser null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $empresa null;
  23.     #[ORM\Column(typeTypes::BIGINTnullabletrue)]
  24.     private ?string $idNit null;
  25.     #[ORM\Column(length255)]
  26.     private ?string $responsable null;
  27.     #[ORM\ManyToOne(inversedBy'clientesSeleccionados')]
  28.     private ?ComEncuestaSactisfaccion $comEncuestaSactisfaccion null;
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getCreateAt(): ?\DateTimeInterface
  34.     {
  35.         return $this->createAt;
  36.     }
  37.     public function setCreateAt(\DateTimeInterface $createAt): static
  38.     {
  39.         $this->createAt $createAt;
  40.         return $this;
  41.     }
  42.     public function getCreateUser(): ?string
  43.     {
  44.         return $this->createUser;
  45.     }
  46.     public function setCreateUser(string $createUser): static
  47.     {
  48.         $this->createUser $createUser;
  49.         return $this;
  50.     }
  51.     public function getUpdateAt(): ?\DateTimeInterface
  52.     {
  53.         return $this->updateAt;
  54.     }
  55.     public function setUpdateAt(\DateTimeInterface $updateAt): static
  56.     {
  57.         $this->updateAt $updateAt;
  58.         return $this;
  59.     }
  60.     public function getUpdateUser(): ?string
  61.     {
  62.         return $this->updateUser;
  63.     }
  64.     public function setUpdateUser(string $updateUser): static
  65.     {
  66.         $this->updateUser $updateUser;
  67.         return $this;
  68.     }
  69.     public function getEmpresa(): ?string
  70.     {
  71.         return $this->empresa;
  72.     }
  73.     public function setEmpresa(?string $empresa): static
  74.     {
  75.         $this->empresa $empresa;
  76.         return $this;
  77.     }
  78.     public function getIdNit(): ?string
  79.     {
  80.         return $this->idNit;
  81.     }
  82.     public function setIdNit(?string $idNit): static
  83.     {
  84.         $this->idNit $idNit;
  85.         return $this;
  86.     }
  87.     public function getResponsable(): ?string
  88.     {
  89.         return $this->responsable;
  90.     }
  91.     public function setResponsable(string $responsable): static
  92.     {
  93.         $this->responsable $responsable;
  94.         return $this;
  95.     }
  96.     public function getComEncuestaSactisfaccion(): ?ComEncuestaSactisfaccion
  97.     {
  98.         return $this->comEncuestaSactisfaccion;
  99.     }
  100.     public function setComEncuestaSactisfaccion(?ComEncuestaSactisfaccion $comEncuestaSactisfaccion): static
  101.     {
  102.         $this->comEncuestaSactisfaccion $comEncuestaSactisfaccion;
  103.         return $this;
  104.     }
  105. }