<?phpnamespace App\Entity;use App\Repository\GHMatrizEntrenamientoProcesoRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Table(name: 'gh_matriz_entrenamiento_proceso')]#[ORM\Entity(repositoryClass: GHMatrizEntrenamientoProcesoRepository::class)]class GHMatrizEntrenamientoProceso{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\ManyToOne(inversedBy: 'matrizEntrenamientoProcesos')] private ?GHMatrizEntrenamiento $matrizEntrenamiento = null; #[ORM\ManyToOne(inversedBy: 'matrizEntrenamientoProceso')] private ?ParProceso $proceso = null; #[ORM\Column(type: Types::TEXT)] private ?string $descripcion = null; #[ORM\Column(length: 255)] private ?string $tiempo = 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\ManyToOne(inversedBy: 'gHMatrizEntrenamientoProcesos')] private ?ParSubproceso $subProceso = null; public function getId(): ?int { return $this->id; } public function getMatrizEntrenamiento(): ?GHMatrizEntrenamiento { return $this->matrizEntrenamiento; } public function setMatrizEntrenamiento(?GHMatrizEntrenamiento $matrizEntrenamiento): static { $this->matrizEntrenamiento = $matrizEntrenamiento; return $this; } public function getProceso(): ?ParProceso { return $this->proceso; } public function setProceso(?ParProceso $proceso): static { $this->proceso = $proceso; return $this; } public function getDescripcion(): ?string { return $this->descripcion; } public function setDescripcion(string $descripcion): static { $this->descripcion = $descripcion; return $this; } public function getTiempo(): ?string { return $this->tiempo; } public function setTiempo(string $tiempo): static { $this->tiempo = $tiempo; 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 getSubProceso(): ?ParSubproceso { return $this->subProceso; } public function setSubProceso(?ParSubproceso $subProceso): static { $this->subProceso = $subProceso; return $this; }}