src/Entity/GHRevisionInicial.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\GHRevisionInicialRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ORM\Table(name'gh_revision_inicial')]
  9. #[ORM\Entity(repositoryClassGHRevisionInicialRepository::class)]
  10. class GHRevisionInicial
  11. {
  12.     #[ORM\Id]
  13.     #[ORM\GeneratedValue]
  14.     #[ORM\Column]
  15.     private ?int $id null;
  16.   
  17.     #[ORM\ManyToOne(inversedBy'revisionInicial')]
  18.     private ?GHCandidato $candidato null;
  19.     #[ORM\ManyToOne(inversedBy'revisionInicial')]
  20.     private ?ParTipoAntecedentes $tipoAntecedente null;
  21.     #[ORM\ManyToOne(inversedBy'revisionInicial')]
  22.     private ?ParEstado $estado null;
  23.     #[ORM\Column(length255)]
  24.     private ?string $archivo null;
  25.     #[ORM\Column]
  26.     private ?\DateTime $createAt null;
  27.     #[ORM\Column]
  28.     private ?\DateTime $updateAt null;
  29.     #[ORM\Column(length55)]
  30.     private ?string $createUser null;
  31.     #[ORM\Column(length55)]
  32.     private ?string $updateUser null;
  33.     #[ORM\Column(typeTypes::DATE_MUTABLE)]
  34.     private ?\DateTimeInterface $fecha null;
  35.     #[ORM\ManyToOne(inversedBy'revicionInicial')]
  36.     private ?ParConceptoGH $concepto null;
  37.     public function __construct()
  38.     {
  39.      
  40.     }
  41.     public function getId(): ?int
  42.     {
  43.         return $this->id;
  44.     }
  45.     public function getCandidato(): ?GHCandidato
  46.     {
  47.         return $this->candidato;
  48.     }
  49.     public function setCandidato(?GHCandidato $candidato): static
  50.     {
  51.         $this->candidato $candidato;
  52.         return $this;
  53.     }
  54.     public function getTipoAntecedente(): ?ParTipoAntecedentes
  55.     {
  56.         return $this->tipoAntecedente;
  57.     }
  58.     public function setTipoAntecedente(?ParTipoAntecedentes $tipoAntecedente): static
  59.     {
  60.         $this->tipoAntecedente $tipoAntecedente;
  61.         return $this;
  62.     }
  63.     public function getEstado(): ?ParEstado
  64.     {
  65.         return $this->estado;
  66.     }
  67.     public function setEstado(?ParEstado $estado): static
  68.     {
  69.         $this->estado $estado;
  70.         return $this;
  71.     }
  72.     public function getArchivo(): ?string
  73.     {
  74.         return $this->archivo;
  75.     }
  76.     public function setArchivo(string $archivo): static
  77.     {
  78.         $this->archivo $archivo;
  79.         return $this;
  80.     }
  81.     public function getCreateAt(): ?\DateTime
  82.     {
  83.         return $this->createAt;
  84.     }
  85.     public function setCreateAt(\DateTime $createAt): static
  86.     {
  87.         $this->createAt $createAt;
  88.         return $this;
  89.     }
  90.     public function getUpdateAt(): ?\DateTime
  91.     {
  92.         return $this->updateAt;
  93.     }
  94.     public function setUpdateAt(\DateTime $updateAt): static
  95.     {
  96.         $this->updateAt $updateAt;
  97.         return $this;
  98.     }
  99.     public function getCreateUser(): ?string
  100.     {
  101.         return $this->createUser;
  102.     }
  103.     public function setCreateUser(string $createUser): static
  104.     {
  105.         $this->createUser $createUser;
  106.         return $this;
  107.     }
  108.     public function getUpdateUser(): ?string
  109.     {
  110.         return $this->updateUser;
  111.     }
  112.     public function setUpdateUser(string $updateUser): static
  113.     {
  114.         $this->updateUser $updateUser;
  115.         return $this;
  116.     }
  117.     public function getFecha(): ?\DateTimeInterface
  118.     {
  119.         return $this->fecha;
  120.     }
  121.     public function setFecha(\DateTimeInterface $fecha): static
  122.     {
  123.         $this->fecha $fecha;
  124.         return $this;
  125.     }
  126.     public function getConcepto(): ?ParConceptoGH
  127.     {
  128.         return $this->concepto;
  129.     }
  130.     public function setConcepto(?ParConceptoGH $concepto): static
  131.     {
  132.         $this->concepto $concepto;
  133.         return $this;
  134.     }
  135. }