<?phpnamespace App\Entity;use App\Repository\GHPerfilCargoSSTRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: GHPerfilCargoSSTRepository::class)]class GHPerfilCargoSST{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(type: Types::TEXT, nullable: true)] private ?string $condicionesFisicas = null; #[ORM\Column(type: Types::TEXT, nullable: true)] private ?string $condicionesMentales = null; #[ORM\Column(type: Types::TEXT, nullable: true)] private ?string $riesgosLaborales = null; #[ORM\ManyToOne(inversedBy: 'perfilCargoSST')] private ?GHPerfilCargo $gHPerfilCargo = null; #[ORM\Column(length: 255)] private ?string $createUser = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $createAt = null; #[ORM\Column(length: 255)] private ?string $updateUser = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $updateAt = null; #[ORM\Column(type: Types::TEXT, nullable: true)] private ?string $peligro = null; #[ORM\Column(type: Types::TEXT, nullable: true)] private ?string $riesgo = null; #[ORM\Column(type: Types::TEXT, nullable: true)] private ?string $medidasControl = null; public function getId(): ?int { return $this->id; } public function getCondicionesFisicas(): ?string { return $this->condicionesFisicas; } public function setCondicionesFisicas(?string $condicionesFisicas): static { $this->condicionesFisicas = $condicionesFisicas; return $this; } public function getCondicionesMentales(): ?string { return $this->condicionesMentales; } public function setCondicionesMentales(?string $condicionesMentales): static { $this->condicionesMentales = $condicionesMentales; return $this; } public function getRiesgosLaborales(): ?string { return $this->riesgosLaborales; } public function setRiesgosLaborales(?string $riesgosLaborales): static { $this->riesgosLaborales = $riesgosLaborales; return $this; } public function getGHPerfilCargo(): ?GHPerfilCargo { return $this->gHPerfilCargo; } public function setGHPerfilCargo(?GHPerfilCargo $gHPerfilCargo): static { $this->gHPerfilCargo = $gHPerfilCargo; 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 getPeligro(): ?string { return $this->peligro; } public function setPeligro(?string $peligro): static { $this->peligro = $peligro; return $this; } public function getRiesgo(): ?string { return $this->riesgo; } public function setRiesgo(?string $riesgo): static { $this->riesgo = $riesgo; return $this; } public function getMedidasControl(): ?string { return $this->medidasControl; } public function setMedidasControl(?string $medidasControl): static { $this->medidasControl = $medidasControl; return $this; }}