src/Entity/GHRegistroInscripcionReposicion.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\GHRegistroInscripcionReposicionRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use phpDocumentor\Reflection\Types\Nullable;
  7. #[ORM\Table(name'gh_registro_inscripcion_reposicion')]
  8. #[ORM\Entity(repositoryClassGHRegistroInscripcionReposicionRepository::class)]
  9. class GHRegistroInscripcionReposicion
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\ManyToOne(inversedBy'registroInscripcionReposicion')]
  16.     private ?GHRegistroInscripcion $registroInscripcion null;
  17.     #[ORM\Column(nullable:true)]
  18.     private ?int $numeroCarnet null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $soporte null;
  21.     #[ORM\Column(nullable:truelength255)]
  22.     private ?string $actaEntrega null;
  23.     #[ORM\Column(length50)]
  24.     private ?string $createUser null;
  25.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  26.     private ?\DateTimeInterface $createAt null;
  27.     #[ORM\Column(length50)]
  28.     private ?string $updateUser null;
  29.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  30.     private ?\DateTimeInterface $updateAt null;
  31.     #[ORM\ManyToOne(inversedBy'registroInscripcionReposicion')]
  32.     private ?ParMotivoReposicion $motivo null;
  33.     #[ORM\ManyToOne(inversedBy'gHRegistroInscripcionReposicions')]
  34.     private ?TerPersona $persona null;
  35.     public function getId(): ?int
  36.     {
  37.         return $this->id;
  38.     }
  39.     public function getRegistroInscripcion(): ?GHRegistroInscripcion
  40.     {
  41.         return $this->registroInscripcion;
  42.     }
  43.     public function setRegistroInscripcion(?GHRegistroInscripcion $registroInscripcion): static
  44.     {
  45.         $this->registroInscripcion $registroInscripcion;
  46.         return $this;
  47.     }
  48.     public function getNumeroCarnet(): ?int
  49.     {
  50.         return $this->numeroCarnet;
  51.     }
  52.     public function setNumeroCarnet(int $numeroCarnet): static
  53.     {
  54.         $this->numeroCarnet $numeroCarnet;
  55.         return $this;
  56.     }
  57.     public function getSoporte(): ?string
  58.     {
  59.         return $this->soporte;
  60.     }
  61.     public function setSoporte(?string $soporte): static
  62.     {
  63.         $this->soporte $soporte;
  64.         return $this;
  65.     }
  66.     public function getActaEntrega(): ?string
  67.     {
  68.         return $this->actaEntrega;
  69.     }
  70.     public function setActaEntrega(string $actaEntrega): static
  71.     {
  72.         $this->actaEntrega $actaEntrega;
  73.         return $this;
  74.     }
  75.     public function getCreateUser(): ?string
  76.     {
  77.         return $this->createUser;
  78.     }
  79.     public function setCreateUser(string $createUser): static
  80.     {
  81.         $this->createUser $createUser;
  82.         return $this;
  83.     }
  84.     public function getCreateAt(): ?\DateTimeInterface
  85.     {
  86.         return $this->createAt;
  87.     }
  88.     public function setCreateAt(\DateTimeInterface $createAt): static
  89.     {
  90.         $this->createAt $createAt;
  91.         return $this;
  92.     }
  93.     public function getUpdateUser(): ?string
  94.     {
  95.         return $this->updateUser;
  96.     }
  97.     public function setUpdateUser(string $updateUser): static
  98.     {
  99.         $this->updateUser $updateUser;
  100.         return $this;
  101.     }
  102.     public function getUpdateAt(): ?\DateTimeInterface
  103.     {
  104.         return $this->updateAt;
  105.     }
  106.     public function setUpdateAt(\DateTimeInterface $updateAt): static
  107.     {
  108.         $this->updateAt $updateAt;
  109.         return $this;
  110.     }
  111.     public function getMotivo(): ?ParMotivoReposicion
  112.     {
  113.         return $this->motivo;
  114.     }
  115.     public function setMotivo(?ParMotivoReposicion $motivo): static
  116.     {
  117.         $this->motivo $motivo;
  118.         return $this;
  119.     }
  120.     public function getPersona(): ?TerPersona
  121.     {
  122.         return $this->persona;
  123.     }
  124.     public function setPersona(?TerPersona $persona): static
  125.     {
  126.         $this->persona $persona;
  127.         return $this;
  128.     }
  129. }