src/Entity/PbaremeBrute.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PbaremeBruteRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassPbaremeBruteRepository::class)]
  8. class PbaremeBrute
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $nature_sal null;
  16.     #[ORM\ManyToOne(inversedBy'PbaremeBrutes')]
  17.     private ?Pbareme $bareme null;
  18.     #[ORM\ManyToOne(inversedBy'PbaremeBrutes')]
  19.     private ?Prubrique $rubrique null;
  20.     #[ORM\Column(length255)]
  21.     private ?string $Base null;
  22.     #[ORM\Column(length255)]
  23.     private ?string $Nom_Base null;
  24.     #[ORM\Column]
  25.     private ?float $Taux_Ps null;
  26.     #[ORM\Column(length100)]
  27.     private ?string $TTaux_PS null;
  28.     #[ORM\Column]
  29.     private ?float $montant null;
  30.     #[ORM\Column(length100)]
  31.     private ?string $Type_MT null;
  32.     #[ORM\Column]
  33.     private ?int $Imposable null;
  34.     #[ORM\Column(length100)]
  35.     private ?string $Genre null;
  36.     #[ORM\Column(length255nullabletrue)]
  37.     private ?string $type null;
  38.     #[ORM\Column(nullabletrue)]
  39.     private ?float $taux null;
  40.     #[ORM\Column(length255nullabletrue)]
  41.     private ?string $categorie null;
  42.     #[ORM\Column(length255nullabletrue)]
  43.     private ?string $tauxCotis null;
  44.     #[ORM\Column(nullabletrue)]
  45.     private ?bool $active null;
  46.   
  47.   
  48.    
  49.     public function getId(): ?int
  50.     {
  51.         return $this->id;
  52.     }
  53.     public function getNatureSal(): ?string
  54.     {
  55.         return $this->nature_sal;
  56.     }
  57.     public function setNatureSal(string $nature_sal): self
  58.     {
  59.         $this->nature_sal $nature_sal;
  60.         return $this;
  61.     }
  62.     public function getBareme(): ?Pbareme
  63.     {
  64.         return $this->bareme;
  65.     }
  66.     public function setBareme(?Pbareme $bareme): self
  67.     {
  68.         $this->bareme $bareme;
  69.         return $this;
  70.     }
  71.     public function getRubrique(): ?Prubrique
  72.     {
  73.         return $this->rubrique;
  74.     }
  75.     public function setRubrique(?Prubrique $rubrique): self
  76.     {
  77.         $this->rubrique $rubrique;
  78.         return $this;
  79.     }
  80.     public function getBase(): ?string
  81.     {
  82.         return $this->Base;
  83.     }
  84.     public function setBase(string $Base): self
  85.     {
  86.         $this->Base $Base;
  87.         return $this;
  88.     }
  89.     public function getNomBase(): ?string
  90.     {
  91.         return $this->Nom_Base;
  92.     }
  93.     public function setNomBase(string $Nom_Base): self
  94.     {
  95.         $this->Nom_Base $Nom_Base;
  96.         return $this;
  97.     }
  98.     public function getTauxPs(): ?float
  99.     {
  100.         return $this->Taux_Ps;
  101.     }
  102.     public function setTauxPs(float $Taux_Ps): self
  103.     {
  104.         $this->Taux_Ps $Taux_Ps;
  105.         return $this;
  106.     }
  107.     public function getTTauxPS(): ?string
  108.     {
  109.         return $this->TTaux_PS;
  110.     }
  111.     public function setTTauxPS(string $TTaux_PS): self
  112.     {
  113.         $this->TTaux_PS $TTaux_PS;
  114.         return $this;
  115.     }
  116.     public function getMontant(): ?float
  117.     {
  118.         return $this->montant;
  119.     }
  120.     public function setMontant(float $montant): self
  121.     {
  122.         $this->montant $montant;
  123.         return $this;
  124.     }
  125.     public function getTypeMT(): ?string
  126.     {
  127.         return $this->Type_MT;
  128.     }
  129.     public function setTypeMT(string $Type_MT): self
  130.     {
  131.         $this->Type_MT $Type_MT;
  132.         return $this;
  133.     }
  134.     public function getImposable(): ?int
  135.     {
  136.         return $this->Imposable;
  137.     }
  138.     public function setImposable(int $Imposable): self
  139.     {
  140.         $this->Imposable $Imposable;
  141.         return $this;
  142.     }
  143.     public function getGenre(): ?string
  144.     {
  145.         return $this->Genre;
  146.     }
  147.     public function setGenre(string $Genre): self
  148.     {
  149.         $this->Genre $Genre;
  150.         return $this;
  151.     }
  152.     public function getType(): ?string
  153.     {
  154.         return $this->type;
  155.     }
  156.     public function setType(?string $type): self
  157.     {
  158.         $this->type $type;
  159.         return $this;
  160.     }
  161.     public function getTaux(): ?float
  162.     {
  163.         return $this->taux;
  164.     }
  165.     public function setTaux(?float $taux): static
  166.     {
  167.         $this->taux $taux;
  168.         return $this;
  169.     }
  170.     public function getCategorie(): ?string
  171.     {
  172.         return $this->categorie;
  173.     }
  174.     public function setCategorie(?string $categorie): static
  175.     {
  176.         $this->categorie $categorie;
  177.         return $this;
  178.     }
  179.     public function getTauxCotis(): ?string
  180.     {
  181.         return $this->tauxCotis;
  182.     }
  183.     public function setTauxCotis(?string $tauxCotis): static
  184.     {
  185.         $this->tauxCotis $tauxCotis;
  186.         return $this;
  187.     }
  188.     public function isActive(): ?bool
  189.     {
  190.         return $this->active;
  191.     }
  192.     public function setActive(?bool $active): static
  193.     {
  194.         $this->active $active;
  195.         return $this;
  196.     }
  197.     
  198.    
  199.    
  200. }