<?phpnamespace App\Entity;use App\Repository\GHGestionTurnoRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: GHGestionTurnoRepository::class)]class GHGestionTurno{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(nullable: true)] private ?bool $lunes = null; #[ORM\Column(nullable: true)] private ?bool $martes = null; #[ORM\Column(nullable: true)] private ?bool $miercoles = null; #[ORM\Column(nullable: true)] private ?bool $jueves = null; #[ORM\Column(nullable: true)] private ?bool $viernes = null; #[ORM\Column(nullable: true)] private ?bool $sabado = null; #[ORM\ManyToOne(inversedBy: 'gestionTurno')] private ?GHGrupoTrabajo $grupoTrabajo = null; #[ORM\ManyToOne(inversedBy: 'gestionTurno')] private ?TerPersona $colaborador = null; public function getId(): ?int { return $this->id; } public function isLunes(): ?bool { return $this->lunes; } public function setLunes(?bool $lunes): static { $this->lunes = $lunes; return $this; } public function isMartes(): ?bool { return $this->martes; } public function setMartes(?bool $martes): static { $this->martes = $martes; return $this; } public function isMiercoles(): ?bool { return $this->miercoles; } public function setMiercoles(?bool $miercoles): static { $this->miercoles = $miercoles; return $this; } public function isJueves(): ?bool { return $this->jueves; } public function setJueves(?bool $jueves): static { $this->jueves = $jueves; return $this; } public function isViernes(): ?bool { return $this->viernes; } public function setViernes(?bool $viernes): static { $this->viernes = $viernes; return $this; } public function isSabado(): ?bool { return $this->sabado; } public function setSabado(?bool $sabado): static { $this->sabado = $sabado; return $this; } public function getGrupoTrabajo(): ?GHGrupoTrabajo { return $this->grupoTrabajo; } public function setGrupoTrabajo(?GHGrupoTrabajo $grupoTrabajo): static { $this->grupoTrabajo = $grupoTrabajo; return $this; } public function getColaborador(): ?TerPersona { return $this->colaborador; } public function setColaborador(?TerPersona $colaborador): static { $this->colaborador = $colaborador; return $this; }}