src/Entity/PBaremeCimr.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PBaremeCimrRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassPBaremeCimrRepository::class)]
  8. class PBaremeCimr
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\ManyToOne(inversedBy'baremeCimrs')]
  15.     private ?Prubrique $rubrique null;
  16.     #[ORM\ManyToOne(inversedBy'baremeCimrs')]
  17.     private ?Pbareme $bareme null;
  18.     #[ORM\Column(nullabletrue)]
  19.     private ?float $taux null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $categorie null;
  22.     #[ORM\Column(length255nullabletrue)]
  23.     private ?string $tauxCotis null;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $type null;
  26.     #[ORM\ManyToMany(targetEntityPbareme::class, mappedBy'pbaremeCimrs')]
  27.     private Collection $pbaremes;
  28.     public function __construct()
  29.     {
  30.         $this->pbaremes = new ArrayCollection();
  31.     }
  32.     public function getId(): ?int
  33.     {
  34.         return $this->id;
  35.     }
  36.     public function getRubrique(): ?Prubrique
  37.     {
  38.         return $this->rubrique;
  39.     }
  40.     public function setRubrique(?Prubrique $rubrique): self
  41.     {
  42.         $this->rubrique $rubrique;
  43.         return $this;
  44.     }
  45.     public function getBareme(): ?Pbareme
  46.     {
  47.         return $this->bareme;
  48.     }
  49.     public function setBareme(?Pbareme $bareme): self
  50.     {
  51.         $this->bareme $bareme;
  52.         return $this;
  53.     }
  54.     public function getTaux(): ?float
  55.     {
  56.         return $this->taux;
  57.     }
  58.     public function setTaux(?float $taux): self
  59.     {
  60.         $this->taux $taux;
  61.         return $this;
  62.     }
  63.     public function getCategorie(): ?string
  64.     {
  65.         return $this->categorie;
  66.     }
  67.     public function setCategorie(?string $categorie): self
  68.     {
  69.         $this->categorie $categorie;
  70.         return $this;
  71.     }
  72.     public function getTauxCotis(): ?string
  73.     {
  74.         return $this->tauxCotis;
  75.     }
  76.     public function setTauxCotis(?string $tauxCotis): self
  77.     {
  78.         $this->tauxCotis $tauxCotis;
  79.         return $this;
  80.     }
  81.     public function getType(): ?string
  82.     {
  83.         return $this->type;
  84.     }
  85.     public function setType(?string $type): self
  86.     {
  87.         $this->type $type;
  88.         return $this;
  89.     }
  90.     /**
  91.      * @return Collection<int, Pbareme>
  92.      */
  93.     public function getPbaremes(): Collection
  94.     {
  95.         return $this->pbaremes;
  96.     }
  97.     public function addPbareme(Pbareme $pbareme): static
  98.     {
  99.         if (!$this->pbaremes->contains($pbareme)) {
  100.             $this->pbaremes->add($pbareme);
  101.             $pbareme->addPbaremeCimr($this);
  102.         }
  103.         return $this;
  104.     }
  105.     public function removePbareme(Pbareme $pbareme): static
  106.     {
  107.         if ($this->pbaremes->removeElement($pbareme)) {
  108.             $pbareme->removePbaremeCimr($this);
  109.         }
  110.         return $this;
  111.     }
  112. }