src/Entity/GHPruebasTecnicas.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\GHPruebasTecnicasRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Table(name'gh_pruebas_tecnicas')]
  7. #[ORM\Entity(repositoryClassGHPruebasTecnicasRepository::class)]
  8. class GHPruebasTecnicas {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\ManyToOne(inversedBy'pruebaTecnica')]
  14.     private ?GHCandidato $candidato null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $archivo null;
  17.     #[ORM\ManyToOne(inversedBy'GHPruebaTecnica')]
  18.     private ?ParEstado $estado null;
  19.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  20.     private ?string $observacion null;
  21.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  22.     private ?string $resultado null;
  23.     #[ORM\Column]
  24.     private ?\DateTime $createAt null;
  25.     #[ORM\Column]
  26.     private ?\DateTime $updateAt null;
  27.     #[ORM\Column(length55)]
  28.     private ?string $createUser null;
  29.     #[ORM\Column(length55)]
  30.     private ?string $updateUser null;
  31.     #[ORM\Column(length255nullabletrue)]
  32.     private ?string $pruebaCalificada null;
  33.     #[ORM\Column(length10nullabletrue)]
  34.     private ?string $responsablePrueba null;
  35.     #[ORM\Column(length255nullabletrue)]
  36.     private ?string $usuarioCalificaPrueba 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 getArchivo(): ?string {
  66.         return $this->archivo;
  67.     }
  68.     public function setArchivo(string $archivo): static {
  69.         $this->archivo $archivo;
  70.         return $this;
  71.     }
  72.     public function getId(): ?int {
  73.         return $this->id;
  74.     }
  75.     public function getCandidato(): ?GHCandidato {
  76.         return $this->candidato;
  77.     }
  78.     public function setCandidato(?GHCandidato $candidato): static {
  79.         $this->candidato $candidato;
  80.         return $this;
  81.     }
  82.     public function getEstado(): ?ParEstado {
  83.         return $this->estado;
  84.     }
  85.     public function setEstado(?ParEstado $estado): static {
  86.         $this->estado $estado;
  87.         return $this;
  88.     }
  89.     public function getObservacion(): ?string {
  90.         return $this->observacion;
  91.     }
  92.     public function setObservacion(?string $observacion): static {
  93.         $this->observacion $observacion;
  94.         return $this;
  95.     }
  96.     public function getResultado(): ?string {
  97.         return $this->resultado;
  98.     }
  99.     public function setResultado(string $resultado): static {
  100.         $this->resultado $resultado;
  101.         return $this;
  102.     }
  103.     public function getPruebaCalificada(): ?string {
  104.         return $this->pruebaCalificada;
  105.     }
  106.     public function setPruebaCalificada(?string $pruebaCalificada): static {
  107.         $this->pruebaCalificada $pruebaCalificada;
  108.         return $this;
  109.     }
  110.     public function getResponsablePrueba(): ?string {
  111.         return $this->responsablePrueba;
  112.     }
  113.     public function setResponsablePrueba(?string $responsablePrueba): static {
  114.         $this->responsablePrueba $responsablePrueba;
  115.         return $this;
  116.     }
  117.     public function getUsuarioCalificaPrueba(): ?string
  118.     {
  119.         return $this->usuarioCalificaPrueba;
  120.     }
  121.     public function setUsuarioCalificaPrueba(?string $usuarioCalificaPrueba): static
  122.     {
  123.         $this->usuarioCalificaPrueba $usuarioCalificaPrueba;
  124.         return $this;
  125.     }
  126. }