src/Entity/GHEntrevistaInfoSistemas.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\GHEntrevistaInfoSistemasRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Table(name'gh_entrevista_info_sistemas')]
  8. #[ORM\Entity(repositoryClassGHEntrevistaInfoSistemasRepository::class)]
  9. class GHEntrevistaInfoSistemas {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\ManyToOne(inversedBy'sistema')]
  15.     private ?ParSistemaInformatico $sistema null;
  16.     #[ORM\ManyToOne(inversedBy'habilidad')]
  17.     private ?ParHabilidad $habilidad null;
  18.     #[ORM\ManyToOne(inversedBy'entrevistaInfoSistemas')]
  19.     private ?GHEntrevista $entrevista null;
  20.     #[ORM\Column]
  21.     private ?\DateTime $createAt null;
  22.     #[ORM\Column]
  23.     private ?\DateTime $updateAt null;
  24.     #[ORM\Column(length55)]
  25.     private ?string $createUser null;
  26.     #[ORM\Column(length55)]
  27.     private ?string $updateUser null;
  28.     #[ORM\Column(length255nullabletrue)]
  29.     private ?string $otros null;
  30.     #[ORM\Column(nullabletrue)]
  31.     private ?int $puntajePsicotecnica1 null;
  32.     #[ORM\Column(nullabletrue)]
  33.     private ?int $puntajePsicotecnica2 null;
  34.     #[ORM\Column(nullabletrue)]
  35.     private ?int $puntajeTecnica null;
  36.     public function getCreateAt(): ?\DateTime {
  37.         return $this->createAt;
  38.     }
  39.     public function setCreateAt(\DateTime $createAt): static {
  40.         $this->createAt $createAt;
  41.         return $this;
  42.     }
  43.     public function getUpdateAt(): ?\DateTime {
  44.         return $this->updateAt;
  45.     }
  46.     public function setUpdateAt(\DateTime $updateAt): static {
  47.         $this->updateAt $updateAt;
  48.         return $this;
  49.     }
  50.     public function getCreateUser(): ?string {
  51.         return $this->createUser;
  52.     }
  53.     public function setCreateUser(string $createUser): static {
  54.         $this->createUser $createUser;
  55.         return $this;
  56.     }
  57.     public function getUpdateUser(): ?string {
  58.         return $this->updateUser;
  59.     }
  60.     public function setUpdateUser(string $updateUser): static {
  61.         $this->updateUser $updateUser;
  62.         return $this;
  63.     }
  64.     public function __construct() {
  65.         $this->idEntrevista = new ArrayCollection();
  66.     }
  67.     public function getId(): ?int {
  68.         return $this->id;
  69.     }
  70.     public function getSistema(): ?ParSistemaInformatico {
  71.         return $this->sistema;
  72.     }
  73.     public function setSistema(?ParSistemaInformatico $sistema): static {
  74.         $this->sistema $sistema;
  75.         return $this;
  76.     }
  77.     public function getHabilidad(): ?ParHabilidad {
  78.         return $this->habilidad;
  79.     }
  80.     public function setHabilidad(?ParHabilidad $habilidad): static {
  81.         $this->habilidad $habilidad;
  82.         return $this;
  83.     }
  84.     public function getEntrevista(): ?GHEntrevista {
  85.         return $this->entrevista;
  86.     }
  87.     public function setEntrevista(?GHEntrevista $entrevista): static {
  88.         $this->entrevista $entrevista;
  89.         return $this;
  90.     }
  91.     public function getOtros(): ?string
  92.     {
  93.         return $this->otros;
  94.     }
  95.     public function setOtros(?string $otros): static
  96.     {
  97.         $this->otros $otros;
  98.         return $this;
  99.     }
  100.     public function getPuntajePsicotecnica1(): ?int
  101.     {
  102.         return $this->puntajePsicotecnica1;
  103.     }
  104.     public function setPuntajePsicotecnica1(?int $puntajePsicotecnica1): static
  105.     {
  106.         $this->puntajePsicotecnica1 $puntajePsicotecnica1;
  107.         return $this;
  108.     }
  109.     public function getPuntajePsicotecnica2(): ?int
  110.     {
  111.         return $this->puntajePsicotecnica2;
  112.     }
  113.     public function setPuntajePsicotecnica2(?int $puntajePsicotecnica2): static
  114.     {
  115.         $this->puntajePsicotecnica2 $puntajePsicotecnica2;
  116.         return $this;
  117.     }
  118.     public function getPuntajeTecnica(): ?int
  119.     {
  120.         return $this->puntajeTecnica;
  121.     }
  122.     public function setPuntajeTecnica(?int $puntajeTecnica): static
  123.     {
  124.         $this->puntajeTecnica $puntajeTecnica;
  125.         return $this;
  126.     }
  127. }