src/Entity/GHInduccionProceso.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\GHInduccionProcesoRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use phpDocumentor\Reflection\Types\Nullable;
  7. #[ORM\Table(name'gh_induccion_proceso')]
  8. #[ORM\Entity(repositoryClassGHInduccionProcesoRepository::class)]
  9. class GHInduccionProceso
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\ManyToOne(inversedBy'induccionProcesos')]
  16.     private ?GHinduccion $induccion null;
  17.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  18.     private ?\DateTimeInterface $fechaInduccion null;
  19.     #[ORM\Column(length100nullabletrue)]
  20.     private ?string $horario null;
  21.     #[ORM\ManyToOne(targetEntityParInduccion::class)]
  22.     #[ORM\JoinColumn(nullablefalse)]
  23.     private ?ParInduccion $duracion null;
  24.     #[ORM\Column(length100)]
  25.     private ?string $ubicacion null;
  26.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  27.     private ?string $observacion null;
  28.     #[ORM\ManyToOne(inversedBy'induccionProcesos')]
  29.     private ?ParEstado $estado null;
  30.     #[ORM\ManyToOne(inversedBy'induccionProcesos')]
  31.     private ?ParProceso $proceso null;
  32.     #[ORM\ManyToOne(inversedBy'induccionProcesos')]
  33.     private ?TerPersona $responsable null;
  34.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  35.     private ?\DateTimeInterface $createAt null;
  36.     #[ORM\Column(length100)]
  37.     private ?string $createUser null;
  38.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  39.     private ?\DateTimeInterface $updateAt null;
  40.     #[ORM\Column(length100)]
  41.     private ?string $updateUser null;
  42.     #[ORM\ManyToOne(inversedBy'gHInduccionProcesos')]
  43.     private ?ParInduccion $procesoInduccion null;
  44.     #[ORM\Column(nullabletrue)]
  45.     private ?int $calificar null;
  46.     #[ORM\ManyToOne(inversedBy'gHInduccionProceso')]
  47.     private ?ParInduccion $descripcion null;
  48.     public function getId(): ?int
  49.     {
  50.         return $this->id;
  51.     }
  52.     public function getInduccion(): ?GHinduccion
  53.     {
  54.         return $this->induccion;
  55.     }
  56.     public function setInduccion(?GHinduccion $induccion): static
  57.     {
  58.         $this->induccion $induccion;
  59.         return $this;
  60.     }
  61.     public function getFechaInduccion(): ?\DateTimeInterface
  62.     {
  63.         return $this->fechaInduccion;
  64.     }
  65.     public function setFechaInduccion(\DateTimeInterface $fechaInduccion): static
  66.     {
  67.         $this->fechaInduccion $fechaInduccion;
  68.         return $this;
  69.     }
  70.     public function getHorario(): ?string
  71.     {
  72.         return $this->horario;
  73.     }
  74.     public function setHorario(string $horario): static
  75.     {
  76.         $this->horario $horario;
  77.         return $this;
  78.     }
  79.     public function getDuracion(): ?ParInduccion
  80.     {
  81.         return $this->duracion;
  82.     }
  83.     public function setDuracion(?ParInduccion $duracion): self
  84.     {
  85.         $this->duracion $duracion;
  86.         return $this;
  87.     }
  88.     public function getUbicacion(): ?string
  89.     {
  90.         return $this->ubicacion;
  91.     }
  92.     public function setUbicacion(?string $ubicacion): static
  93.     {
  94.         $this->ubicacion $ubicacion;
  95.         return $this;
  96.     }
  97.     public function getObservacion(): ?string
  98.     {
  99.         return $this->observacion;
  100.     }
  101.     public function setObservacion(?string $observacion): static
  102.     {
  103.         $this->observacion $observacion;
  104.         return $this;
  105.     }
  106.     public function getEstado(): ?ParEstado
  107.     {
  108.         return $this->estado;
  109.     }
  110.     public function setEstado(?ParEstado $estado): static
  111.     {
  112.         $this->estado $estado;
  113.         return $this;
  114.     }
  115.     public function getProceso(): ?ParProceso
  116.     {
  117.         return $this->proceso;
  118.     }
  119.     public function setProceso(?ParProceso $proceso): static
  120.     {
  121.         $this->proceso $proceso;
  122.         return $this;
  123.     }
  124.     public function getResponsable(): ?TerPersona
  125.     {
  126.         return $this->responsable;
  127.     }
  128.     public function setResponsable(?TerPersona $responsable): static
  129.     {
  130.         $this->responsable $responsable;
  131.         return $this;
  132.     }
  133.     public function getCreateAt(): ?\DateTimeInterface
  134.     {
  135.         return $this->createAt;
  136.     }
  137.     public function setCreateAt(\DateTimeInterface $createAt): static
  138.     {
  139.         $this->createAt $createAt;
  140.         return $this;
  141.     }
  142.     public function getCreateUser(): ?string
  143.     {
  144.         return $this->createUser;
  145.     }
  146.     public function setCreateUser(string $createUser): static
  147.     {
  148.         $this->createUser $createUser;
  149.         return $this;
  150.     }
  151.     public function getUpdateAt(): ?\DateTimeInterface
  152.     {
  153.         return $this->updateAt;
  154.     }
  155.     public function setUpdateAt(\DateTimeInterface $updateAt): static
  156.     {
  157.         $this->updateAt $updateAt;
  158.         return $this;
  159.     }
  160.     public function getUpdateUser(): ?string
  161.     {
  162.         return $this->updateUser;
  163.     }
  164.     public function setUpdateUser(string $updateUser): static
  165.     {
  166.         $this->updateUser $updateUser;
  167.         return $this;
  168.     }
  169.     public function getProcesoInduccion(): ?ParInduccion
  170.     {
  171.         return $this->procesoInduccion;
  172.     }
  173.     public function setProcesoInduccion(?ParInduccion $procesoInduccion): static
  174.     {
  175.         $this->procesoInduccion $procesoInduccion;
  176.         return $this;
  177.     }
  178.     public function getCalificar(): ?int
  179.     {
  180.         return $this->calificar;
  181.     }
  182.     public function setCalificar(?int $calificar): static
  183.     {
  184.         $this->calificar $calificar;
  185.         return $this;
  186.     }
  187.     public function getDescripcion(): ?ParInduccion
  188.     {
  189.         return $this->descripcion;
  190.     }
  191.     public function setDescripcion(?ParInduccion $descripcion): static
  192.     {
  193.         $this->descripcion $descripcion;
  194.         return $this;
  195.     }
  196. }