src/Entity/DemandeConge.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\DemandeCongeRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassDemandeCongeRepository::class)]
  7. class DemandeConge
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\ManyToOne(inversedBy'demandeConges')]
  14.     private ?Pemploye $employe null;
  15.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  16.     private ?\DateTimeInterface $created null;
  17.     #[ORM\ManyToOne(inversedBy'demandeConges')]
  18.     private ?PDossier $dossier null;
  19.     #[ORM\Column(nullabletrue)]
  20.     private ?float $nombreJour null;
  21.     #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  22.     private ?\DateTimeInterface $dateDebut null;
  23.     #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  24.     private ?\DateTimeInterface $dateFin null;
  25.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  26.     private ?string $motif null;
  27.     #[ORM\Column(nullabletrue)]
  28.     private ?bool $urgent null;
  29.     #[ORM\ManyToOne(inversedBy'demandeConges')]
  30.     private ?PStatut $statut null;
  31.     #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  32.     private ?\DateTimeInterface $dateReprise null;
  33.     #[ORM\ManyToOne]
  34.     private ?LContract $contract null;
  35.     #[ORM\ManyToOne(inversedBy'demandeConges')]
  36.     private ?PTypeConge $typeConge null;
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getEmploye(): ?Pemploye
  42.     {
  43.         return $this->employe;
  44.     }
  45.     public function setEmploye(?Pemploye $employe): static
  46.     {
  47.         $this->employe $employe;
  48.         return $this;
  49.     }
  50.     public function getCreated(): ?\DateTimeInterface
  51.     {
  52.         return $this->created;
  53.     }
  54.     public function setCreated(?\DateTimeInterface $created): static
  55.     {
  56.         $this->created $created;
  57.         return $this;
  58.     }
  59.     public function getDossier(): ?PDossier
  60.     {
  61.         return $this->dossier;
  62.     }
  63.     public function setDossier(?PDossier $dossier): static
  64.     {
  65.         $this->dossier $dossier;
  66.         return $this;
  67.     }
  68.     public function getNombreJour(): ?float
  69.     {
  70.         return $this->nombreJour;
  71.     }
  72.     public function setNombreJour(?float $nombreJour): static
  73.     {
  74.         $this->nombreJour $nombreJour;
  75.         return $this;
  76.     }
  77.     public function getDateDebut(): ?\DateTimeInterface
  78.     {
  79.         return $this->dateDebut;
  80.     }
  81.     public function setDateDebut(?\DateTimeInterface $dateDebut): static
  82.     {
  83.         $this->dateDebut $dateDebut;
  84.         return $this;
  85.     }
  86.     public function getDateFin(): ?\DateTimeInterface
  87.     {
  88.         return $this->dateFin;
  89.     }
  90.     public function setDateFin(?\DateTimeInterface $dateFin): static
  91.     {
  92.         $this->dateFin $dateFin;
  93.         return $this;
  94.     }
  95.     public function getMotif(): ?string
  96.     {
  97.         return $this->motif;
  98.     }
  99.     public function setMotif(?string $motif): static
  100.     {
  101.         $this->motif $motif;
  102.         return $this;
  103.     }
  104.     public function isUrgent(): ?bool
  105.     {
  106.         return $this->urgent;
  107.     }
  108.     public function setUrgent(?bool $urgent): static
  109.     {
  110.         $this->urgent $urgent;
  111.         return $this;
  112.     }
  113.     public function getStatut(): ?PStatut
  114.     {
  115.         return $this->statut;
  116.     }
  117.     public function setStatut(?PStatut $statut): static
  118.     {
  119.         $this->statut $statut;
  120.         return $this;
  121.     }
  122.     public function getDateReprise(): ?\DateTimeInterface
  123.     {
  124.         return $this->dateReprise;
  125.     }
  126.     public function setDateReprise(?\DateTimeInterface $dateReprise): static
  127.     {
  128.         $this->dateReprise $dateReprise;
  129.         return $this;
  130.     }
  131.     public function getContract(): ?LContract
  132.     {
  133.         return $this->contract;
  134.     }
  135.     public function setContract(?LContract $contract): static
  136.     {
  137.         $this->contract $contract;
  138.         return $this;
  139.     }
  140.     public function getTypeConge(): ?PTypeConge
  141.     {
  142.         return $this->typeConge;
  143.     }
  144.     public function setTypeConge(?PTypeConge $typeConge): static
  145.     {
  146.         $this->typeConge $typeConge;
  147.         return $this;
  148.     }
  149. }