<?phpnamespace App\Entity;use App\Repository\GHPruebasTecnicasRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Table(name: 'gh_pruebas_tecnicas')]#[ORM\Entity(repositoryClass: GHPruebasTecnicasRepository::class)]class GHPruebasTecnicas { #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\ManyToOne(inversedBy: 'pruebaTecnica')] private ?GHCandidato $candidato = null; #[ORM\Column(length: 255, nullable: true)] private ?string $archivo = null; #[ORM\ManyToOne(inversedBy: 'GHPruebaTecnica')] private ?ParEstado $estado = null; #[ORM\Column(type: Types::TEXT, nullable: true)] private ?string $observacion = null; #[ORM\Column(type: Types::TEXT, nullable: true)] private ?string $resultado = null; #[ORM\Column] private ?\DateTime $createAt = null; #[ORM\Column] private ?\DateTime $updateAt = null; #[ORM\Column(length: 55)] private ?string $createUser = null; #[ORM\Column(length: 55)] private ?string $updateUser = null; #[ORM\Column(length: 255, nullable: true)] private ?string $pruebaCalificada = null; #[ORM\Column(length: 10, nullable: true)] private ?string $responsablePrueba = null; #[ORM\Column(length: 255, nullable: true)] private ?string $usuarioCalificaPrueba = null; public function getCreateAt(): ?\DateTime { return $this->createAt; } public function setCreateAt(\DateTime $createAt): static { $this->createAt = $createAt; return $this; } public function getUpdateAt(): ?\DateTime { return $this->updateAt; } public function setUpdateAt(\DateTime $updateAt): static { $this->updateAt = $updateAt; return $this; } public function getCreateUser(): ?string { return $this->createUser; } public function setCreateUser(string $createUser): static { $this->createUser = $createUser; return $this; } public function getUpdateUser(): ?string { return $this->updateUser; } public function setUpdateUser(string $updateUser): static { $this->updateUser = $updateUser; return $this; } public function getArchivo(): ?string { return $this->archivo; } public function setArchivo(string $archivo): static { $this->archivo = $archivo; return $this; } public function getId(): ?int { return $this->id; } public function getCandidato(): ?GHCandidato { return $this->candidato; } public function setCandidato(?GHCandidato $candidato): static { $this->candidato = $candidato; return $this; } public function getEstado(): ?ParEstado { return $this->estado; } public function setEstado(?ParEstado $estado): static { $this->estado = $estado; return $this; } public function getObservacion(): ?string { return $this->observacion; } public function setObservacion(?string $observacion): static { $this->observacion = $observacion; return $this; } public function getResultado(): ?string { return $this->resultado; } public function setResultado(string $resultado): static { $this->resultado = $resultado; return $this; } public function getPruebaCalificada(): ?string { return $this->pruebaCalificada; } public function setPruebaCalificada(?string $pruebaCalificada): static { $this->pruebaCalificada = $pruebaCalificada; return $this; } public function getResponsablePrueba(): ?string { return $this->responsablePrueba; } public function setResponsablePrueba(?string $responsablePrueba): static { $this->responsablePrueba = $responsablePrueba; return $this; } public function getUsuarioCalificaPrueba(): ?string { return $this->usuarioCalificaPrueba; } public function setUsuarioCalificaPrueba(?string $usuarioCalificaPrueba): static { $this->usuarioCalificaPrueba = $usuarioCalificaPrueba; return $this; }}