src/Entity/HoraireExploit.php line 10
<?phpnamespace App\Entity;use App\Repository\HoraireExploitRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: HoraireExploitRepository::class)]class HoraireExploit{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\ManyToOne(inversedBy: 'no')]private ?User $user = null;#[ORM\Column(type: Types::DATETIME_MUTABLE)]private ?\DateTimeInterface $date = null;#[ORM\Column]private ?int $checked = null;#[ORM\Column(type: Types::TIME_MUTABLE)]private ?\DateTimeInterface $dm = null;#[ORM\Column(type: Types::TIME_MUTABLE)]private ?\DateTimeInterface $fm = null;#[ORM\Column(type: Types::TIME_MUTABLE)]private ?\DateTimeInterface $da = null;#[ORM\Column(type: Types::TIME_MUTABLE)]private ?\DateTimeInterface $fa = null;#[ORM\Column]private ?bool $pdj = null;#[ORM\Column]private ?bool $rmidi = null;#[ORM\Column]private ?bool $rsoir = null;#[ORM\Column]private ?bool $rgd = null;#[ORM\Column]private ?bool $rnuit = null;public function getId(): ?int{return $this->id;}public function getUser(): ?User{return $this->user;}public function setUser(?User $user): static{$this->user = $user;return $this;}public function getDate(): ?\DateTimeInterface{return $this->date;}public function setDate(\DateTimeInterface $date): static{$this->date = $date;return $this;}public function getChecked(): ?int{return $this->checked;}public function setChecked(int $checked): static{$this->checked = $checked;return $this;}public function getDm(): ?\DateTimeInterface{return $this->dm;}public function setDm(\DateTimeInterface $dm): static{$this->dm = $dm;return $this;}public function getFm(): ?\DateTimeInterface{return $this->fm;}public function setFm(\DateTimeInterface $fm): static{$this->fm = $fm;return $this;}public function getDa(): ?\DateTimeInterface{return $this->da;}public function setDa(\DateTimeInterface $da): static{$this->da = $da;return $this;}public function getFa(): ?\DateTimeInterface{return $this->fa;}public function setFa(\DateTimeInterface $fa): static{$this->fa = $fa;return $this;}public function getPdj(): ?bool{return $this->pdj;}public function setPdj(bool $pdj): static{$this->pdj = $pdj;return $this;}public function getRsoir(): ?bool{return $this->rsoir;}public function setRsoir(bool $rsoir): static{$this->rsoir = $rsoir;return $this;}public function getRmidi(): ?bool{return $this->rmidi;}public function setRmidi(bool $rmidi): static{$this->rmidi = $rmidi;return $this;}public function getRgd(): ?bool{return $this->rgd;}public function setRgd(bool $rgd): static{$this->rgd = $rgd;return $this;}public function getRnuit(): ?bool{return $this->rnuit;}public function setRnuit(bool $rnuit): static{$this->rnuit = $rnuit;return $this;}}