<?phpnamespace App\Entity;use App\Repository\GHDocumentoContratacionRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Table(name: 'gh_documento_contratacion')]#[ORM\Entity(repositoryClass: GHDocumentoContratacionRepository::class)]class GHDocumentoContratacion { #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(length: 255)] private ?string $evidencia = null; #[ORM\ManyToOne(inversedBy: 'documentoContratacion')] private ?DocDocumento $documento = null; #[ORM\ManyToOne(inversedBy: 'documentoContratacion')] private ?GHContratacion $contratacion = null; #[ORM\Column] private ?\DateTime $createAt = null; #[ORM\Column] private ?\DateTime $updateAt = null; #[ORM\Column(length: 55)] private ?string $createUser = null; #[ORM\Column(length: 55)] private ?string $updateUser = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $fecha = null; public function getCreateAt(): ?\DateTime { return $this->createAt; } public function setCreateAt(\DateTime $createAt): static { $this->createAt = $createAt; return $this; } public function getUpdateAt(): ?\DateTime { return $this->updateAt; } public function setUpdateAt(\DateTime $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 getId(): ?int { return $this->id; } public function getEvidencia(): ?string { return $this->evidencia; } public function setEvidencia(string $evidencia): static { $this->evidencia = $evidencia; return $this; } public function getDocumento(): ?DocDocumento { return $this->documento; } public function setDocumento(?DocDocumento $documento): static { $this->documento = $documento; return $this; } public function getContratacion(): ?GHContratacion { return $this->contratacion; } public function setContratacion(?GHContratacion $contratacion): static { $this->contratacion = $contratacion; return $this; } public function getFecha(): ?\DateTimeInterface { return $this->fecha; } public function setFecha(?\DateTimeInterface $fecha): void { $this->fecha = $fecha; }}