src/Entity/GHPruebasPsicotecnicas.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\GHPruebasPsicotecnicasRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Table(name'gh_pruebas_psicotecnicas')]
  6. #[ORM\Entity(repositoryClassGHPruebasPsicotecnicasRepository::class)]
  7. class GHPruebasPsicotecnicas {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.    
  13.     #[ORM\ManyToOne(inversedBy'pruebaPsicotecnica')]
  14.     private ?GHCandidato $candidato null;
  15.     #[ORM\ManyToOne(inversedBy'GHPruebaPsicotecnica')]
  16.     private ?ParEstado $estado null;
  17.     #[ORM\Column]
  18.     private ?\DateTime $createAt null;
  19.     #[ORM\Column]
  20.     private ?\DateTime $updateAt null;
  21.     #[ORM\Column(length55)]
  22.     private ?string $createUser null;
  23.     #[ORM\Column(length55)]
  24.     private ?string $updateUser null;
  25.     #[ORM\ManyToOne(inversedBy'pruPsicoPruebaDisc')]
  26.     private ?ParEstado $pruebaDisc null;
  27.     #[ORM\ManyToOne(inversedBy'pruPsicoPruebaEthikos')]
  28.     private ?ParEstado $pruebaEthickos null;
  29.     #[ORM\Column]
  30.     private ?int $puntuacionDisc null;
  31.     #[ORM\Column]
  32.     private ?int $puntuacionEthickos null;
  33.     #[ORM\Column(length255)]
  34.     private ?string $evidenciaDisc null;
  35.     #[ORM\Column(length255)]
  36.     private ?string $evidenciaEthickos null;
  37.     public function getCreateAt(): ?\DateTime {
  38.         return $this->createAt;
  39.     }
  40.     public function setCreateAt(\DateTime $createAt): static {
  41.         $this->createAt $createAt;
  42.         return $this;
  43.     }
  44.     public function getUpdateAt(): ?\DateTime {
  45.         return $this->updateAt;
  46.     }
  47.     public function setUpdateAt(\DateTime $updateAt): static {
  48.         $this->updateAt $updateAt;
  49.         return $this;
  50.     }
  51.     public function getCreateUser(): ?string {
  52.         return $this->createUser;
  53.     }
  54.     public function setCreateUser(string $createUser): static {
  55.         $this->createUser $createUser;
  56.         return $this;
  57.     }
  58.     public function getUpdateUser(): ?string {
  59.         return $this->updateUser;
  60.     }
  61.     public function setUpdateUser(string $updateUser): static {
  62.         $this->updateUser $updateUser;
  63.         return $this;
  64.     }
  65.     public function getId(): ?int {
  66.         return $this->id;
  67.     }
  68.     
  69.     public function getCandidato(): ?GHCandidato {
  70.         return $this->candidato;
  71.     }
  72.     public function setCandidato(?GHCandidato $candidato): static {
  73.         $this->candidato $candidato;
  74.         return $this;
  75.     }
  76.     public function getEstado(): ?ParEstado {
  77.         return $this->estado;
  78.     }
  79.     public function setEstado(?ParEstado $estado): static {
  80.         $this->estado $estado;
  81.         return $this;
  82.     }
  83.     public function getPruebaDisc(): ?ParEstado
  84.     {
  85.         return $this->pruebaDisc;
  86.     }
  87.     public function setPruebaDisc(?ParEstado $pruebaDisc): static
  88.     {
  89.         $this->pruebaDisc $pruebaDisc;
  90.         return $this;
  91.     }
  92.     public function getPruebaEthickos(): ?ParEstado
  93.     {
  94.         return $this->pruebaEthickos;
  95.     }
  96.     public function setPruebaEthickos(?ParEstado $pruebaEthickos): static
  97.     {
  98.         $this->pruebaEthickos $pruebaEthickos;
  99.         return $this;
  100.     }
  101.     public function getPuntuacionDisc(): ?int
  102.     {
  103.         return $this->puntuacionDisc;
  104.     }
  105.     public function setPuntuacionDisc(int $puntuacionDisc): static
  106.     {
  107.         $this->puntuacionDisc $puntuacionDisc;
  108.         return $this;
  109.     }
  110.     public function getPuntuacionEthickos(): ?int
  111.     {
  112.         return $this->puntuacionEthickos;
  113.     }
  114.     public function setPuntuacionEthickos(int $puntuacionEthickos): static
  115.     {
  116.         $this->puntuacionEthickos $puntuacionEthickos;
  117.         return $this;
  118.     }
  119.     public function getEvidenciaDisc(): ?string
  120.     {
  121.         return $this->evidenciaDisc;
  122.     }
  123.     public function setEvidenciaDisc(string $evidenciaDisc): static
  124.     {
  125.         $this->evidenciaDisc $evidenciaDisc;
  126.         return $this;
  127.     }
  128.     public function getEvidenciaEthickos(): ?string
  129.     {
  130.         return $this->evidenciaEthickos;
  131.     }
  132.     public function setEvidenciaEthickos(string $evidenciaEthickos): static
  133.     {
  134.         $this->evidenciaEthickos $evidenciaEthickos;
  135.         return $this;
  136.     }
  137. }