src/Entity/GHReentrenamientoProceso.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\GHReentrenamientoProcesoRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassGHReentrenamientoProcesoRepository::class)]
  7. class GHReentrenamientoProceso
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  14.     private ?\DateTimeInterface $fecha null;
  15.     #[ORM\ManyToOne(inversedBy'gHReentrenamientoProcesos')]
  16.     private ?ParProceso $parProceso null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $hora null;
  19.     #[ORM\ManyToOne(inversedBy'gHReentrenamientoProcesos')]
  20.     private ?GHReentrenamiento $ghReentrenamiento null;
  21.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  22.     private ?\DateTimeInterface $createAt null;
  23.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  24.     private ?\DateTimeInterface $updateAt null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $createUser null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $updateUser null;
  29.     #[ORM\Column(nullabletrue)]
  30.     private ?int $calificacion null;
  31.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  32.     private ?string $descripcion null;
  33.     #[ORM\ManyToOne(inversedBy'gHReentrenamientoProcesos')]
  34.     private ?TerPersona $personaResponsable null;
  35.     #[ORM\ManyToOne(inversedBy'gHReentrenamientoProcesos')]
  36.     private ?ParEstado $resultado null;
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getFecha(): ?\DateTimeInterface
  42.     {
  43.         return $this->fecha;
  44.     }
  45.     public function setFecha(?\DateTimeInterface $fecha): static
  46.     {
  47.         $this->fecha $fecha;
  48.         return $this;
  49.     }
  50.     public function getParProceso(): ?ParProceso
  51.     {
  52.         return $this->parProceso;
  53.     }
  54.     public function setParProceso(?ParProceso $parProceso): static
  55.     {
  56.         $this->parProceso $parProceso;
  57.         return $this;
  58.     }
  59.     public function getHora(): ?string
  60.     {
  61.         return $this->hora;
  62.     }
  63.     public function setHora(?string $hora): static
  64.     {
  65.         $this->hora $hora;
  66.         return $this;
  67.     }
  68.     public function getGhReentrenamiento(): ?GHReentrenamiento
  69.     {
  70.         return $this->ghReentrenamiento;
  71.     }
  72.     public function setGhReentrenamiento(?GHReentrenamiento $ghReentrenamiento): static
  73.     {
  74.         $this->ghReentrenamiento $ghReentrenamiento;
  75.         return $this;
  76.     }
  77.     public function getCreateAt(): ?\DateTimeInterface
  78.     {
  79.         return $this->createAt;
  80.     }
  81.     public function setCreateAt(?\DateTimeInterface $createAt): static
  82.     {
  83.         $this->createAt $createAt;
  84.         return $this;
  85.     }
  86.     public function getUpdateAt(): ?\DateTimeInterface
  87.     {
  88.         return $this->updateAt;
  89.     }
  90.     public function setUpdateAt(?\DateTimeInterface $updateAt): static
  91.     {
  92.         $this->updateAt $updateAt;
  93.         return $this;
  94.     }
  95.     public function getCreateUser(): ?string
  96.     {
  97.         return $this->createUser;
  98.     }
  99.     public function setCreateUser(?string $createUser): static
  100.     {
  101.         $this->createUser $createUser;
  102.         return $this;
  103.     }
  104.     public function getUpdateUser(): ?string
  105.     {
  106.         return $this->updateUser;
  107.     }
  108.     public function setUpdateUser(string $updateUser): static
  109.     {
  110.         $this->updateUser $updateUser;
  111.         return $this;
  112.     }
  113.     public function getCalificacion(): ?int
  114.     {
  115.         return $this->calificacion;
  116.     }
  117.     public function setCalificacion(?int $calificacion): static
  118.     {
  119.         $this->calificacion $calificacion;
  120.         return $this;
  121.     }
  122.     public function getDescripcion(): ?string
  123.     {
  124.         return $this->descripcion;
  125.     }
  126.     public function setDescripcion(?string $descripcion): static
  127.     {
  128.         $this->descripcion $descripcion;
  129.         return $this;
  130.     }
  131.     public function getPersonaResponsable(): ?TerPersona
  132.     {
  133.         return $this->personaResponsable;
  134.     }
  135.     public function setPersonaResponsable(?TerPersona $personaResponsable): static
  136.     {
  137.         $this->personaResponsable $personaResponsable;
  138.         return $this;
  139.     }
  140.     public function getResultado(): ?ParEstado
  141.     {
  142.         return $this->resultado;
  143.     }
  144.     public function setResultado(?ParEstado $resultado): static
  145.     {
  146.         $this->resultado $resultado;
  147.         return $this;
  148.     }
  149. }