src/Entity/PPrelevementLg.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PPrelevementLgRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassPPrelevementLgRepository::class)]
  8. class PPrelevementLg
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\ManyToOne(inversedBy'prelevementLgs')]
  15.     private ?PPrelevement $prelevement null;
  16.     #[ORM\ManyToOne(inversedBy'prelevementLgs')]
  17.     private ?Periode $periode null;
  18.     #[ORM\Column(nullabletrue)]
  19.     private ?float $montant null;
  20.     #[ORM\Column(nullabletrue)]
  21.     private ?bool $valider false;
  22.     #[ORM\Column(nullabletrue)]
  23.     private ?bool $active true;
  24.     #[ORM\ManyToOne(inversedBy'prelevementLgs')]
  25.     private ?Tbulletin $bulletin null;
  26.     #[ORM\OneToMany(mappedBy'prelevementLg'targetEntityProbleme::class)]
  27.     private Collection $problemes;
  28.     #[ORM\Column(length255nullabletrue)]
  29.     private ?string $motif null;
  30.     public function __construct()
  31.     {
  32.         $this->problemes = new ArrayCollection();
  33.     }
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getPrelevement(): ?PPrelevement
  39.     {
  40.         return $this->prelevement;
  41.     }
  42.     public function setPrelevement(?PPrelevement $prelevement): self
  43.     {
  44.         $this->prelevement $prelevement;
  45.         return $this;
  46.     }
  47.     public function getPeriode(): ?Periode
  48.     {
  49.         return $this->periode;
  50.     }
  51.     public function setPeriode(?Periode $periode): self
  52.     {
  53.         $this->periode $periode;
  54.         return $this;
  55.     }
  56.     public function getMontant(): ?float
  57.     {
  58.         return $this->montant;
  59.     }
  60.     public function setMontant(?float $montant): self
  61.     {
  62.         $this->montant $montant;
  63.         return $this;
  64.     }
  65.     public function isValider(): ?bool
  66.     {
  67.         return $this->valider;
  68.     }
  69.     public function setValider(?bool $valider): self
  70.     {
  71.         $this->valider $valider;
  72.         return $this;
  73.     }
  74.     public function isActive(): ?bool
  75.     {
  76.         return $this->active;
  77.     }
  78.     public function setActive(?bool $active): self
  79.     {
  80.         $this->active $active;
  81.         return $this;
  82.     }
  83.     public function getBulletin(): ?Tbulletin
  84.     {
  85.         return $this->bulletin;
  86.     }
  87.     public function setBulletin(?Tbulletin $bulletin): self
  88.     {
  89.         $this->bulletin $bulletin;
  90.         return $this;
  91.     }
  92.     /**
  93.      * @return Collection<int, Probleme>
  94.      */
  95.     public function getProblemes(): Collection
  96.     {
  97.         return $this->problemes;
  98.     }
  99.     public function addProbleme(Probleme $probleme): self
  100.     {
  101.         if (!$this->problemes->contains($probleme)) {
  102.             $this->problemes->add($probleme);
  103.             $probleme->setPrelevementLg($this);
  104.         }
  105.         return $this;
  106.     }
  107.     public function removeProbleme(Probleme $probleme): self
  108.     {
  109.         if ($this->problemes->removeElement($probleme)) {
  110.             // set the owning side to null (unless already changed)
  111.             if ($probleme->getPrelevementLg() === $this) {
  112.                 $probleme->setPrelevementLg(null);
  113.             }
  114.         }
  115.         return $this;
  116.     }
  117.     public function getMotif(): ?string
  118.     {
  119.         return $this->motif;
  120.     }
  121.     public function setMotif(?string $motif): self
  122.     {
  123.         $this->motif $motif;
  124.         return $this;
  125.     }
  126. }