<?phpnamespace App\Entity;use App\Repository\GHRegistroInscripcionReposicionRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;use phpDocumentor\Reflection\Types\Nullable;#[ORM\Table(name: 'gh_registro_inscripcion_reposicion')]#[ORM\Entity(repositoryClass: GHRegistroInscripcionReposicionRepository::class)]class GHRegistroInscripcionReposicion{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\ManyToOne(inversedBy: 'registroInscripcionReposicion')] private ?GHRegistroInscripcion $registroInscripcion = null; #[ORM\Column(nullable:true)] private ?int $numeroCarnet = null; #[ORM\Column(length: 255, nullable: true)] private ?string $soporte = null; #[ORM\Column(nullable:true, length: 255)] private ?string $actaEntrega = null; #[ORM\Column(length: 50)] private ?string $createUser = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $createAt = null; #[ORM\Column(length: 50)] private ?string $updateUser = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $updateAt = null; #[ORM\ManyToOne(inversedBy: 'registroInscripcionReposicion')] private ?ParMotivoReposicion $motivo = null; #[ORM\ManyToOne(inversedBy: 'gHRegistroInscripcionReposicions')] private ?TerPersona $persona = null; public function getId(): ?int { return $this->id; } public function getRegistroInscripcion(): ?GHRegistroInscripcion { return $this->registroInscripcion; } public function setRegistroInscripcion(?GHRegistroInscripcion $registroInscripcion): static { $this->registroInscripcion = $registroInscripcion; return $this; } public function getNumeroCarnet(): ?int { return $this->numeroCarnet; } public function setNumeroCarnet(int $numeroCarnet): static { $this->numeroCarnet = $numeroCarnet; return $this; } public function getSoporte(): ?string { return $this->soporte; } public function setSoporte(?string $soporte): static { $this->soporte = $soporte; return $this; } public function getActaEntrega(): ?string { return $this->actaEntrega; } public function setActaEntrega(string $actaEntrega): static { $this->actaEntrega = $actaEntrega; return $this; } public function getCreateUser(): ?string { return $this->createUser; } public function setCreateUser(string $createUser): static { $this->createUser = $createUser; return $this; } public function getCreateAt(): ?\DateTimeInterface { return $this->createAt; } public function setCreateAt(\DateTimeInterface $createAt): static { $this->createAt = $createAt; return $this; } public function getUpdateUser(): ?string { return $this->updateUser; } public function setUpdateUser(string $updateUser): static { $this->updateUser = $updateUser; return $this; } public function getUpdateAt(): ?\DateTimeInterface { return $this->updateAt; } public function setUpdateAt(\DateTimeInterface $updateAt): static { $this->updateAt = $updateAt; return $this; } public function getMotivo(): ?ParMotivoReposicion { return $this->motivo; } public function setMotivo(?ParMotivoReposicion $motivo): static { $this->motivo = $motivo; return $this; } public function getPersona(): ?TerPersona { return $this->persona; } public function setPersona(?TerPersona $persona): static { $this->persona = $persona; return $this; }}