src/Entity/Probleme.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProblemeRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassProblemeRepository::class)]
  6. class Probleme
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\ManyToOne(inversedBy'problemes')]
  13.     private ?Periode $periode null;
  14.     #[ORM\ManyToOne(inversedBy'problemes')]
  15.     private ?LContract $contract null;
  16.     #[ORM\ManyToOne(inversedBy'problemes')]
  17.     private ?LElementEcheance $elementEcheance null;
  18.     #[ORM\ManyToOne(inversedBy'problemes')]
  19.     private ?LelementFixe $elementFixe null;
  20.     #[ORM\ManyToOne(inversedBy'problemes')]
  21.     private ?PPrelevementLg $prelevementLg null;
  22.     #[ORM\Column(nullabletrue)]
  23.     private ?bool $resoudre false;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $motif null;
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function getPeriode(): ?Periode
  31.     {
  32.         return $this->periode;
  33.     }
  34.     public function setPeriode(?Periode $periode): self
  35.     {
  36.         $this->periode $periode;
  37.         return $this;
  38.     }
  39.     public function getContract(): ?LContract
  40.     {
  41.         return $this->contract;
  42.     }
  43.     public function setContract(?LContract $contract): self
  44.     {
  45.         $this->contract $contract;
  46.         return $this;
  47.     }
  48.     public function getElementEcheance(): ?LElementEcheance
  49.     {
  50.         return $this->elementEcheance;
  51.     }
  52.     public function setElementEcheance(?LElementEcheance $elementEcheance): self
  53.     {
  54.         $this->elementEcheance $elementEcheance;
  55.         return $this;
  56.     }
  57.     public function getElementFixe(): ?LelementFixe
  58.     {
  59.         return $this->elementFixe;
  60.     }
  61.     public function setElementFixe(?LelementFixe $elementFixe): self
  62.     {
  63.         $this->elementFixe $elementFixe;
  64.         return $this;
  65.     }
  66.     public function getPrelevementLg(): ?PPrelevementLg
  67.     {
  68.         return $this->prelevementLg;
  69.     }
  70.     public function setPrelevementLg(?PPrelevementLg $prelevementLg): self
  71.     {
  72.         $this->prelevementLg $prelevementLg;
  73.         return $this;
  74.     }
  75.     public function isResoudre(): ?bool
  76.     {
  77.         return $this->resoudre;
  78.     }
  79.     public function setResoudre(?bool $resoudre): self
  80.     {
  81.         $this->resoudre $resoudre;
  82.         return $this;
  83.     }
  84.     public function getMotif(): ?string
  85.     {
  86.         return $this->motif;
  87.     }
  88.     public function setMotif(?string $motif): self
  89.     {
  90.         $this->motif $motif;
  91.         return $this;
  92.     }
  93. }