src/Entity/HoraireExploit.php line 10

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\HoraireExploitRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassHoraireExploitRepository::class)]
  7. class HoraireExploit
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\ManyToOne(inversedBy'no')]
  14.     private ?User $user null;
  15.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  16.     private ?\DateTimeInterface $date null;
  17.     #[ORM\Column]
  18.     private ?int $checked null;
  19.     #[ORM\Column(typeTypes::TIME_MUTABLE)]
  20.     private ?\DateTimeInterface $dm null;
  21.     #[ORM\Column(typeTypes::TIME_MUTABLE)]
  22.     private ?\DateTimeInterface $fm null;
  23.     #[ORM\Column(typeTypes::TIME_MUTABLE)]
  24.     private ?\DateTimeInterface $da null;
  25.     #[ORM\Column(typeTypes::TIME_MUTABLE)]
  26.     private ?\DateTimeInterface $fa null;
  27.     #[ORM\Column]
  28.     private ?bool $pdj null;
  29.     #[ORM\Column]
  30.     private ?bool $rmidi null;
  31.     #[ORM\Column]
  32.     private ?bool $rsoir null;
  33.     #[ORM\Column]
  34.     private ?bool $rgd null;
  35.     #[ORM\Column]
  36.     private ?bool $rnuit null;
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getUser(): ?User
  42.     {
  43.         return $this->user;
  44.     }
  45.     public function setUser(?User $user): static
  46.     {
  47.         $this->user $user;
  48.         return $this;
  49.     }
  50.     public function getDate(): ?\DateTimeInterface
  51.     {
  52.         return $this->date;
  53.     }
  54.     public function setDate(\DateTimeInterface $date): static
  55.     {
  56.         $this->date $date;
  57.         return $this;
  58.     }
  59.     public function getChecked(): ?int
  60.     {
  61.         return $this->checked;
  62.     }
  63.     public function setChecked(int $checked): static
  64.     {
  65.         $this->checked $checked;
  66.         return $this;
  67.     }
  68.     public function getDm(): ?\DateTimeInterface
  69.     {
  70.         return $this->dm;
  71.     }
  72.     public function setDm(\DateTimeInterface $dm): static
  73.     {
  74.         $this->dm $dm;
  75.         return $this;
  76.     }
  77.     public function getFm(): ?\DateTimeInterface
  78.     {
  79.         return $this->fm;
  80.     }
  81.     public function setFm(\DateTimeInterface $fm): static
  82.     {
  83.         $this->fm $fm;
  84.         return $this;
  85.     }
  86.     public function getDa(): ?\DateTimeInterface
  87.     {
  88.         return $this->da;
  89.     }
  90.     public function setDa(\DateTimeInterface $da): static
  91.     {
  92.         $this->da $da;
  93.         return $this;
  94.     }
  95.     public function getFa(): ?\DateTimeInterface
  96.     {
  97.         return $this->fa;
  98.     }
  99.     public function setFa(\DateTimeInterface $fa): static
  100.     {
  101.         $this->fa $fa;
  102.         return $this;
  103.     }
  104.     public function getPdj(): ?bool
  105.     {
  106.         return $this->pdj;
  107.     }
  108.     public function setPdj(bool $pdj): static
  109.     {
  110.         $this->pdj $pdj;
  111.         return $this;
  112.     }
  113.     public function getRsoir(): ?bool
  114.     {
  115.         return $this->rsoir;
  116.     }
  117.     public function setRsoir(bool $rsoir): static
  118.     {
  119.         $this->rsoir $rsoir;
  120.         return $this;
  121.     }
  122.     public function getRmidi(): ?bool
  123.     {
  124.         return $this->rmidi;
  125.     }
  126.     public function setRmidi(bool $rmidi): static
  127.     {
  128.         $this->rmidi $rmidi;
  129.         return $this;
  130.     }
  131.     public function getRgd(): ?bool
  132.     {
  133.         return $this->rgd;
  134.     }
  135.     public function setRgd(bool $rgd): static
  136.     {
  137.         $this->rgd $rgd;
  138.         return $this;
  139.     }
  140.     public function getRnuit(): ?bool
  141.     {
  142.         return $this->rnuit;
  143.     }
  144.     public function setRnuit(bool $rnuit): static
  145.     {
  146.         $this->rnuit $rnuit;
  147.         return $this;
  148.     }
  149. }