<?phpnamespace App\Entity;use App\Repository\GHEntrenamientoProcesoRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Table(name: 'gh_entrenamiento_proceso')]#[ORM\Entity(repositoryClass: GHEntrenamientoProcesoRepository::class)]class GHEntrenamientoProceso{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\ManyToOne(inversedBy: 'entrenamientoProcesos')] private ?GHEntrenamiento $entrenamiento = null; #[ORM\ManyToOne(inversedBy: 'entrenamientoProcesos')] private ?ParEstado $estado = null; #[ORM\ManyToOne(inversedBy: 'entrenamientoProcesos')] private ?ParProceso $proceso = null; #[ORM\ManyToOne(inversedBy: 'entrenamientoProcesos')] private ?TerPersona $responsable = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $fechaEntrenamiento = null; #[ORM\Column(length: 100)] private ?string $horario = null; #[ORM\Column(length: 50)] private ?string $ubicacion = null; #[ORM\Column(type: Types::TEXT, nullable: true)] private ?string $observacion = null; #[ORM\Column(length: 50)] private ?string $createUser = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $createAt = null; #[ORM\Column(length: 50)] private ?string $updateUser = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $updateAt = null; #[ORM\Column(nullable: true)] private ?int $calificacion = null; #[ORM\Column(length: 255, nullable: true)] private ?string $nivelCalificacion = null; public function getId(): ?int { return $this->id; } public function getEntrenamiento(): ?GHEntrenamiento { return $this->entrenamiento; } public function setEntrenamiento(?GHEntrenamiento $entrenamiento): static { $this->entrenamiento = $entrenamiento; return $this; } public function getEstado(): ?ParEstado { return $this->estado; } public function setEstado(?ParEstado $estado): static { $this->estado = $estado; return $this; } public function getProceso(): ?ParProceso { return $this->proceso; } public function setProceso(?ParProceso $proceso): static { $this->proceso = $proceso; return $this; } public function getResponsable(): ?TerPersona { return $this->responsable; } public function setResponsable(?TerPersona $responsable): static { $this->responsable = $responsable; return $this; } public function getFechaEntrenamiento(): ?\DateTimeInterface { return $this->fechaEntrenamiento; } public function setFechaEntrenamiento(\DateTimeInterface $fechaEntrenamiento): static { $this->fechaEntrenamiento = $fechaEntrenamiento; return $this; } public function getHorario(): ?string { return $this->horario; } public function setHorario(string $horario): static { $this->horario = $horario; return $this; } public function getUbicacion(): ?string { return $this->ubicacion; } public function setUbicacion(string $ubicacion): static { $this->ubicacion = $ubicacion; return $this; } public function getObservacion(): ?string { return $this->observacion; } public function setObservacion(?string $observacion): static { $this->observacion = $observacion; return $this; } public function getCreateUser(): ?string { return $this->createUser; } public function setCreateUser(string $createUser): static { $this->createUser = $createUser; return $this; } public function getCreateAt(): ?\DateTimeInterface { return $this->createAt; } public function setCreateAt(\DateTimeInterface $createAt): static { $this->createAt = $createAt; return $this; } public function getUpdateUser(): ?string { return $this->updateUser; } public function setUpdateUser(string $updateUser): static { $this->updateUser = $updateUser; return $this; } public function getUpdateAt(): ?\DateTimeInterface { return $this->updateAt; } public function setUpdateAt(\DateTimeInterface $updateAt): static { $this->updateAt = $updateAt; return $this; } public function getCalificacion(): ?int { return $this->calificacion; } public function setCalificacion(?int $calificacion): static { $this->calificacion = $calificacion; return $this; } public function getNivelCalificacion(): ?string { return $this->nivelCalificacion; } public function setNivelCalificacion(?string $nivelCalificacion): static { $this->nivelCalificacion = $nivelCalificacion; return $this; }}