src/Entity/GHVerificacionAntecedentePersona.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\GHVerificacionAntecedentePersonaRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Table(name'gh_verificacion_antecedente_persona')]
  7. #[ORM\Entity(repositoryClassGHVerificacionAntecedentePersonaRepository::class)]
  8. class GHVerificacionAntecedentePersona
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\ManyToOne(inversedBy'verificacionAntecedentesPersona')]
  15.     private ?TerPersona $persona null;
  16.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  17.     private ?string $observacion null;
  18.     #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  19.     private ?\DateTimeInterface $fecha null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $evidencia null;
  22.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  23.     private ?\DateTimeInterface $createAt null;
  24.     #[ORM\Column(length50)]
  25.     private ?string $createUser null;
  26.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  27.     private ?\DateTimeInterface $updateAt null;
  28.     #[ORM\Column(length50)]
  29.     private ?string $updateUser null;
  30.     #[ORM\ManyToOne(inversedBy'verificacionAntecedentesPersonas')]
  31.     private ?GHVerificacionAntecedente $verificacionAntecedente null;
  32.     public function getId(): ?int
  33.     {
  34.         return $this->id;
  35.     }
  36.     public function getPersona(): ?TerPersona
  37.     {
  38.         return $this->persona;
  39.     }
  40.     public function setPersona(?TerPersona $persona): static
  41.     {
  42.         $this->persona $persona;
  43.         return $this;
  44.     }
  45.     public function getObservacion(): ?string
  46.     {
  47.         return $this->observacion;
  48.     }
  49.     public function setObservacion(?string $observacion): static
  50.     {
  51.         $this->observacion $observacion;
  52.         return $this;
  53.     }
  54.     public function getFecha(): ?\DateTimeInterface
  55.     {
  56.         return $this->fecha;
  57.     }
  58.     public function setFecha(?\DateTimeInterface $fecha): static
  59.     {
  60.         $this->fecha $fecha;
  61.         return $this;
  62.     }
  63.     public function getEvidencia(): ?string
  64.     {
  65.         return $this->evidencia;
  66.     }
  67.     public function setEvidencia(?string $evidencia): static
  68.     {
  69.         $this->evidencia $evidencia;
  70.         return $this;
  71.     }
  72.     public function getCreateAt(): ?\DateTimeInterface
  73.     {
  74.         return $this->createAt;
  75.     }
  76.     public function setCreateAt(\DateTimeInterface $createAt): static
  77.     {
  78.         $this->createAt $createAt;
  79.         return $this;
  80.     }
  81.     public function getCreateUser(): ?string
  82.     {
  83.         return $this->createUser;
  84.     }
  85.     public function setCreateUser(string $createUser): static
  86.     {
  87.         $this->createUser $createUser;
  88.         return $this;
  89.     }
  90.     public function getUpdateAt(): ?\DateTimeInterface
  91.     {
  92.         return $this->updateAt;
  93.     }
  94.     public function setUpdateAt(\DateTimeInterface $updateAt): static
  95.     {
  96.         $this->updateAt $updateAt;
  97.         return $this;
  98.     }
  99.     public function getUpdateUser(): ?string
  100.     {
  101.         return $this->updateUser;
  102.     }
  103.     public function setUpdateUser(string $updateUser): static
  104.     {
  105.         $this->updateUser $updateUser;
  106.         return $this;
  107.     }
  108.     public function getVerificacionAntecedente(): ?GHVerificacionAntecedente
  109.     {
  110.         return $this->verificacionAntecedente;
  111.     }
  112.     public function setVerificacionAntecedente(?GHVerificacionAntecedente $verificacionAntecedente): static
  113.     {
  114.         $this->verificacionAntecedente $verificacionAntecedente;
  115.         return $this;
  116.     }
  117. }