src/Entity/PDevise.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PDeviseRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassPDeviseRepository::class)]
  8. class PDevise
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $designation null;
  16.     #[ORM\Column(nullabletrue)]
  17.     private ?bool $active true;
  18.     #[ORM\OneToMany(mappedBy'devise'targetEntityPBordereau::class)]
  19.     private Collection $bordereaux;
  20.     #[ORM\OneToMany(mappedBy'devise'targetEntityInjectRemuneration::class)]
  21.     private Collection $injectRemunerations;
  22.     public function __construct()
  23.     {
  24.         $this->bordereaux = new ArrayCollection();
  25.         $this->injectRemunerations = new ArrayCollection();
  26.     }
  27.     public function getId(): ?int
  28.     {
  29.         return $this->id;
  30.     }
  31.     public function getDesignation(): ?string
  32.     {
  33.         return $this->designation;
  34.     }
  35.     public function setDesignation(?string $designation): self
  36.     {
  37.         $this->designation $designation;
  38.         return $this;
  39.     }
  40.     public function isActive(): ?bool
  41.     {
  42.         return $this->active;
  43.     }
  44.     public function setActive(?bool $active): self
  45.     {
  46.         $this->active $active;
  47.         return $this;
  48.     }
  49.     /**
  50.      * @return Collection<int, PBordereau>
  51.      */
  52.     public function getBordereaux(): Collection
  53.     {
  54.         return $this->bordereaux;
  55.     }
  56.     public function addBordereaux(PBordereau $bordereaux): static
  57.     {
  58.         if (!$this->bordereaux->contains($bordereaux)) {
  59.             $this->bordereaux->add($bordereaux);
  60.             $bordereaux->setDevise($this);
  61.         }
  62.         return $this;
  63.     }
  64.     public function removeBordereaux(PBordereau $bordereaux): static
  65.     {
  66.         if ($this->bordereaux->removeElement($bordereaux)) {
  67.             // set the owning side to null (unless already changed)
  68.             if ($bordereaux->getDevise() === $this) {
  69.                 $bordereaux->setDevise(null);
  70.             }
  71.         }
  72.         return $this;
  73.     }
  74.     /**
  75.      * @return Collection<int, InjectRemuneration>
  76.      */
  77.     public function getInjectRemunerations(): Collection
  78.     {
  79.         return $this->injectRemunerations;
  80.     }
  81.     public function addInjectRemuneration(InjectRemuneration $injectRemuneration): static
  82.     {
  83.         if (!$this->injectRemunerations->contains($injectRemuneration)) {
  84.             $this->injectRemunerations->add($injectRemuneration);
  85.             $injectRemuneration->setDevise($this);
  86.         }
  87.         return $this;
  88.     }
  89.     public function removeInjectRemuneration(InjectRemuneration $injectRemuneration): static
  90.     {
  91.         if ($this->injectRemunerations->removeElement($injectRemuneration)) {
  92.             // set the owning side to null (unless already changed)
  93.             if ($injectRemuneration->getDevise() === $this) {
  94.                 $injectRemuneration->setDevise(null);
  95.             }
  96.         }
  97.         return $this;
  98.     }
  99. }