<?phpnamespace App\Entity;use App\Repository\ComIdentificacionClienteRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ComIdentificacionClienteRepository::class)]class ComIdentificacionCliente{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\ManyToOne(inversedBy: 'comIdentificacionClientes')] private ?TerEmpresaCliente $terEmpresaCliente = null; #[ORM\Column(length: 255, nullable: true)] private ?string $agenteCarga = null; #[ORM\Column(length: 255, nullable: true)] private ?string $usuarioApplySoft = null; #[ORM\Column(length: 255, nullable: true)] private ?string $estructuraAsuntoCorreos = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $createAt = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] 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: 'comIdentificacionClientes')] private ?ComHojaVida $comHojaVida = null; #[ORM\ManyToOne(inversedBy: 'comIdentificacionClientes')] private ?ComHojaVidaAsociado $comHojaVidaAsociado = null; public function getId(): ?int { return $this->id; } public function getTerEmpresaCliente(): ?TerEmpresaCliente { return $this->terEmpresaCliente; } public function setTerEmpresaCliente(?TerEmpresaCliente $terEmpresaCliente): static { $this->terEmpresaCliente = $terEmpresaCliente; return $this; } public function getAgenteCarga(): ?string { return $this->agenteCarga; } public function setAgenteCarga(?string $agenteCarga): static { $this->agenteCarga = $agenteCarga; return $this; } public function getUsuarioApplySoft(): ?string { return $this->usuarioApplySoft; } public function setUsuarioApplySoft(?string $usuarioApplySoft): static { $this->usuarioApplySoft = $usuarioApplySoft; return $this; } public function getEstructuraAsuntoCorreos(): ?string { return $this->estructuraAsuntoCorreos; } public function setEstructuraAsuntoCorreos(?string $estructuraAsuntoCorreos): static { $this->estructuraAsuntoCorreos = $estructuraAsuntoCorreos; 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 getComHojaVida(): ?ComHojaVida { return $this->comHojaVida; } public function setComHojaVida(?ComHojaVida $comHojaVida): static { $this->comHojaVida = $comHojaVida; return $this; } public function getComHojaVidaAsociado(): ?ComHojaVidaAsociado { return $this->comHojaVidaAsociado; } public function setComHojaVidaAsociado(?ComHojaVidaAsociado $comHojaVidaAsociado): static { $this->comHojaVidaAsociado = $comHojaVidaAsociado; return $this; }}