<?phpnamespace App\Entity;use App\Repository\GHRevisionInicialRepository;use Doctrine\Common\Collections\ArrayCollection;use Doctrine\Common\Collections\Collection;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Table(name: 'gh_revision_inicial')]#[ORM\Entity(repositoryClass: GHRevisionInicialRepository::class)]class GHRevisionInicial{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\ManyToOne(inversedBy: 'revisionInicial')] private ?GHCandidato $candidato = null; #[ORM\ManyToOne(inversedBy: 'revisionInicial')] private ?ParTipoAntecedentes $tipoAntecedente = null; #[ORM\ManyToOne(inversedBy: 'revisionInicial')] private ?ParEstado $estado = null; #[ORM\Column(length: 255)] private ?string $archivo = 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::DATE_MUTABLE)] private ?\DateTimeInterface $fecha = null; #[ORM\ManyToOne(inversedBy: 'revicionInicial')] private ?ParConceptoGH $concepto = null; public function __construct() { } public function getId(): ?int { return $this->id; } public function getCandidato(): ?GHCandidato { return $this->candidato; } public function setCandidato(?GHCandidato $candidato): static { $this->candidato = $candidato; return $this; } public function getTipoAntecedente(): ?ParTipoAntecedentes { return $this->tipoAntecedente; } public function setTipoAntecedente(?ParTipoAntecedentes $tipoAntecedente): static { $this->tipoAntecedente = $tipoAntecedente; return $this; } public function getEstado(): ?ParEstado { return $this->estado; } public function setEstado(?ParEstado $estado): static { $this->estado = $estado; return $this; } public function getArchivo(): ?string { return $this->archivo; } public function setArchivo(string $archivo): static { $this->archivo = $archivo; return $this; } 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 getFecha(): ?\DateTimeInterface { return $this->fecha; } public function setFecha(\DateTimeInterface $fecha): static { $this->fecha = $fecha; return $this; } public function getConcepto(): ?ParConceptoGH { return $this->concepto; } public function setConcepto(?ParConceptoGH $concepto): static { $this->concepto = $concepto; return $this; }}