<?phpnamespace App\Entity;use App\Repository\ComDocumentosClienteRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ComDocumentosClienteRepository::class)]class ComDocumentosCliente{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(length: 255, nullable: false)] private ?string $tipoDocumento = null; #[ORM\Column(length: 255, nullable: false)] private ?string $nombreDocumento = null; #[ORM\ManyToOne(inversedBy: 'documentosClienteGestionComercial')] private ?ComGestionContactoComercial $documentosClienteGestionComercial = null; #[ORM\ManyToOne(inversedBy: 'comDocumentosCliente')] private ?ComProspecto $comProspectoDocumentoCliente = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $createAt = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $updateAt = null; #[ORM\Column(length: 255, nullable: true)] private ?string $createUser = null; #[ORM\Column(length: 255, nullable: true)] private ?string $updateUser = null; #[ORM\ManyToOne(inversedBy: 'comDocumentosCliente')] private ?TerEmpresaCliente $terEmpresaCliente = null; #[ORM\ManyToOne(inversedBy: 'comDocumentosClientes')] private ?ComHojaVidaAsociado $comHojaVidaAsociado = null; public function getId(): ?int { return $this->id; } public function getTipoDocumento(): ?string { return $this->tipoDocumento; } public function setTipoDocumento(?string $tipoDocumento): static { $this->tipoDocumento = $tipoDocumento; return $this; } public function getNombreDocumento(): ?string { return $this->nombreDocumento; } public function setNombreDocumento(string $nombreDocumento): static { $this->nombreDocumento = $nombreDocumento; return $this; } public function getDocumentosClienteGestionComercial(): ?ComGestionContactoComercial { return $this->documentosClienteGestionComercial; } public function setDocumentosClienteGestionComercial(?ComGestionContactoComercial $documentosClienteGestionComercial): static { $this->documentosClienteGestionComercial = $documentosClienteGestionComercial; return $this; } public function getComProspectoDocumentoCliente(): ?ComProspecto { return $this->comProspectoDocumentoCliente; } public function setComProspectoDocumentoCliente(?ComProspecto $comProspectoDocumentoCliente): static { $this->comProspectoDocumentoCliente = $comProspectoDocumentoCliente; return $this; } public function getCreateAt(): ?\DateTimeInterface { return $this->createAt; } public function setCreateAt(?\DateTimeInterface $createAt): static { $this->createAt = $createAt; return $this; } public function getUpdateAt(): ?\DateTimeInterface { return $this->updateAt; } public function setUpdateAt(\DateTimeInterface $updateAt): static { $this->updateAt = $updateAt; return $this; } public function getCreateUser(): ?string { return $this->createUser; } public function setCreateUser(?string $createUser): static { $this->createUser = $createUser; return $this; } public function getUpdateUser(): ?string { return $this->updateUser; } public function setUpdateUser(?string $updateUser): static { $this->updateUser = $updateUser; return $this; } public function getTerEmpresaCliente(): ?TerEmpresaCliente { return $this->terEmpresaCliente; } public function setTerEmpresaCliente(?TerEmpresaCliente $terEmpresaCliente): static { $this->terEmpresaCliente = $terEmpresaCliente; return $this; } public function getComHojaVidaAsociado(): ?ComHojaVidaAsociado { return $this->comHojaVidaAsociado; } public function setComHojaVidaAsociado(?ComHojaVidaAsociado $comHojaVidaAsociado): static { $this->comHojaVidaAsociado = $comHojaVidaAsociado; return $this; }}