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.   
  45.   
  46.    
  47.     public function getId(): ?int
  48.     {
  49.         return $this->id;
  50.     }
  51.     public function getNatureSal(): ?string
  52.     {
  53.         return $this->nature_sal;
  54.     }
  55.     public function setNatureSal(string $nature_sal): self
  56.     {
  57.         $this->nature_sal $nature_sal;
  58.         return $this;
  59.     }
  60.     public function getBareme(): ?Pbareme
  61.     {
  62.         return $this->bareme;
  63.     }
  64.     public function setBareme(?Pbareme $bareme): self
  65.     {
  66.         $this->bareme $bareme;
  67.         return $this;
  68.     }
  69.     public function getRubrique(): ?Prubrique
  70.     {
  71.         return $this->rubrique;
  72.     }
  73.     public function setRubrique(?Prubrique $rubrique): self
  74.     {
  75.         $this->rubrique $rubrique;
  76.         return $this;
  77.     }
  78.     public function getBase(): ?string
  79.     {
  80.         return $this->Base;
  81.     }
  82.     public function setBase(string $Base): self
  83.     {
  84.         $this->Base $Base;
  85.         return $this;
  86.     }
  87.     public function getNomBase(): ?string
  88.     {
  89.         return $this->Nom_Base;
  90.     }
  91.     public function setNomBase(string $Nom_Base): self
  92.     {
  93.         $this->Nom_Base $Nom_Base;
  94.         return $this;
  95.     }
  96.     public function getTauxPs(): ?float
  97.     {
  98.         return $this->Taux_Ps;
  99.     }
  100.     public function setTauxPs(float $Taux_Ps): self
  101.     {
  102.         $this->Taux_Ps $Taux_Ps;
  103.         return $this;
  104.     }
  105.     public function getTTauxPS(): ?string
  106.     {
  107.         return $this->TTaux_PS;
  108.     }
  109.     public function setTTauxPS(string $TTaux_PS): self
  110.     {
  111.         $this->TTaux_PS $TTaux_PS;
  112.         return $this;
  113.     }
  114.     public function getMontant(): ?float
  115.     {
  116.         return $this->montant;
  117.     }
  118.     public function setMontant(float $montant): self
  119.     {
  120.         $this->montant $montant;
  121.         return $this;
  122.     }
  123.     public function getTypeMT(): ?string
  124.     {
  125.         return $this->Type_MT;
  126.     }
  127.     public function setTypeMT(string $Type_MT): self
  128.     {
  129.         $this->Type_MT $Type_MT;
  130.         return $this;
  131.     }
  132.     public function getImposable(): ?int
  133.     {
  134.         return $this->Imposable;
  135.     }
  136.     public function setImposable(int $Imposable): self
  137.     {
  138.         $this->Imposable $Imposable;
  139.         return $this;
  140.     }
  141.     public function getGenre(): ?string
  142.     {
  143.         return $this->Genre;
  144.     }
  145.     public function setGenre(string $Genre): self
  146.     {
  147.         $this->Genre $Genre;
  148.         return $this;
  149.     }
  150.     public function getType(): ?string
  151.     {
  152.         return $this->type;
  153.     }
  154.     public function setType(?string $type): self
  155.     {
  156.         $this->type $type;
  157.         return $this;
  158.     }
  159.     public function getTaux(): ?float
  160.     {
  161.         return $this->taux;
  162.     }
  163.     public function setTaux(?float $taux): static
  164.     {
  165.         $this->taux $taux;
  166.         return $this;
  167.     }
  168.     public function getCategorie(): ?string
  169.     {
  170.         return $this->categorie;
  171.     }
  172.     public function setCategorie(?string $categorie): static
  173.     {
  174.         $this->categorie $categorie;
  175.         return $this;
  176.     }
  177.     public function getTauxCotis(): ?string
  178.     {
  179.         return $this->tauxCotis;
  180.     }
  181.     public function setTauxCotis(?string $tauxCotis): static
  182.     {
  183.         $this->tauxCotis $tauxCotis;
  184.         return $this;
  185.     }
  186.     
  187.    
  188.    
  189. }