<?phpnamespace App\Entity;use App\Repository\GHRegistroOpainReposicionRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: GHRegistroOpainReposicionRepository::class)]class GHRegistroOpainReposicion{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $fechaRenovacion = null; #[ORM\Column(length: 255, nullable: true)] private ?string $numeroCarnetNuevo = null; #[ORM\Column(length: 255, nullable: true)] private ?string $evidenciaRenovacion = null; #[ORM\Column(length: 255, nullable: true)] private ?string $evidenciaDevolucion = null; #[ORM\ManyToOne(inversedBy: 'gHRegistroOpainReposicions')] private ?TerPersona $terPersona = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $createAt = null; #[ORM\Column(length: 255, nullable: true)] private ?string $createUser = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $updateAt = null; #[ORM\Column(length: 255, nullable: true)] private ?string $updateUser = null; public function getId(): ?int { return $this->id; } public function getFechaRenovacion(): ?\DateTimeInterface { return $this->fechaRenovacion; } public function setFechaRenovacion(?\DateTimeInterface $fechaRenovacion): static { $this->fechaRenovacion = $fechaRenovacion; return $this; } public function getNumeroCarnetNuevo(): ?string { return $this->numeroCarnetNuevo; } public function setNumeroCarnetNuevo(?string $numeroCarnetNuevo): static { $this->numeroCarnetNuevo = $numeroCarnetNuevo; return $this; } public function getEvidenciaRenovacion(): ?string { return $this->evidenciaRenovacion; } public function setEvidenciaRenovacion(?string $evidenciaRenovacion): static { $this->evidenciaRenovacion = $evidenciaRenovacion; return $this; } public function getEvidenciaDevolucion(): ?string { return $this->evidenciaDevolucion; } public function setEvidenciaDevolucion(?string $evidenciaDevolucion): static { $this->evidenciaDevolucion = $evidenciaDevolucion; return $this; } public function getTerPersona(): ?TerPersona { return $this->terPersona; } public function setTerPersona(?TerPersona $terPersona): static { $this->terPersona = $terPersona; 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; }}