<?phpnamespace App\Entity;use App\Repository\GHVerificacionAntecedentePersonaRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Table(name: 'gh_verificacion_antecedente_persona')]#[ORM\Entity(repositoryClass: GHVerificacionAntecedentePersonaRepository::class)]class GHVerificacionAntecedentePersona{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\ManyToOne(inversedBy: 'verificacionAntecedentesPersona')] private ?TerPersona $persona = null; #[ORM\Column(type: Types::TEXT, nullable: true)] private ?string $observacion = null; #[ORM\Column(type: Types::DATE_MUTABLE, nullable: true)] private ?\DateTimeInterface $fecha = null; #[ORM\Column(length: 255, nullable: true)] private ?string $evidencia = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $createAt = null; #[ORM\Column(length: 50)] private ?string $createUser = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $updateAt = null; #[ORM\Column(length: 50)] private ?string $updateUser = null; #[ORM\ManyToOne(inversedBy: 'verificacionAntecedentesPersonas')] private ?GHVerificacionAntecedente $verificacionAntecedente = null; public function getId(): ?int { return $this->id; } public function getPersona(): ?TerPersona { return $this->persona; } public function setPersona(?TerPersona $persona): static { $this->persona = $persona; return $this; } public function getObservacion(): ?string { return $this->observacion; } public function setObservacion(?string $observacion): static { $this->observacion = $observacion; return $this; } public function getFecha(): ?\DateTimeInterface { return $this->fecha; } public function setFecha(?\DateTimeInterface $fecha): static { $this->fecha = $fecha; return $this; } public function getEvidencia(): ?string { return $this->evidencia; } public function setEvidencia(?string $evidencia): static { $this->evidencia = $evidencia; return $this; } 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 getVerificacionAntecedente(): ?GHVerificacionAntecedente { return $this->verificacionAntecedente; } public function setVerificacionAntecedente(?GHVerificacionAntecedente $verificacionAntecedente): static { $this->verificacionAntecedente = $verificacionAntecedente; return $this; }}