<?phpnamespace App\Entity;use App\Repository\ComClientesSeleccionadosRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ComClientesSeleccionadosRepository::class)]class ComClientesSeleccionados{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $createAt = null; #[ORM\Column(length: 255)] private ?string $createUser = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $updateAt = null; #[ORM\Column(length: 255)] private ?string $updateUser = null; #[ORM\Column(length: 255, nullable: true)] private ?string $empresa = null; #[ORM\Column(type: Types::BIGINT, nullable: true)] private ?string $idNit = null; #[ORM\Column(length: 255)] private ?string $responsable = null; #[ORM\ManyToOne(inversedBy: 'clientesSeleccionados')] private ?ComEncuestaSactisfaccion $comEncuestaSactisfaccion = null; public function getId(): ?int { return $this->id; } public function getCreateAt(): ?\DateTimeInterface { return $this->createAt; } public function setCreateAt(\DateTimeInterface $createAt): static { $this->createAt = $createAt; return $this; } public function getCreateUser(): ?string { return $this->createUser; } public function setCreateUser(string $createUser): static { $this->createUser = $createUser; return $this; } public function getUpdateAt(): ?\DateTimeInterface { return $this->updateAt; } public function setUpdateAt(\DateTimeInterface $updateAt): static { $this->updateAt = $updateAt; return $this; } public function getUpdateUser(): ?string { return $this->updateUser; } public function setUpdateUser(string $updateUser): static { $this->updateUser = $updateUser; return $this; } public function getEmpresa(): ?string { return $this->empresa; } public function setEmpresa(?string $empresa): static { $this->empresa = $empresa; return $this; } public function getIdNit(): ?string { return $this->idNit; } public function setIdNit(?string $idNit): static { $this->idNit = $idNit; return $this; } public function getResponsable(): ?string { return $this->responsable; } public function setResponsable(string $responsable): static { $this->responsable = $responsable; return $this; } public function getComEncuestaSactisfaccion(): ?ComEncuestaSactisfaccion { return $this->comEncuestaSactisfaccion; } public function setComEncuestaSactisfaccion(?ComEncuestaSactisfaccion $comEncuestaSactisfaccion): static { $this->comEncuestaSactisfaccion = $comEncuestaSactisfaccion; return $this; }}