src/Entity/SyntheseRemunarationDet.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SyntheseRemunarationDetRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassSyntheseRemunarationDetRepository::class)]
  6. class SyntheseRemunarationDet
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\ManyToOne(inversedBy'dets')]
  13.     private ?SyntheseRemunarationCab $cab null;
  14.     
  15.     #[ORM\Column(nullabletrue)]
  16.     private ?float $salaireBruteImposable null;
  17.     #[ORM\Column(nullabletrue)]
  18.     private ?float $salaireBrute null;
  19.     #[ORM\Column(nullabletrue)]
  20.     private ?float $totalPrimesNonImposable null;
  21.     #[ORM\Column(nullabletrue)]
  22.     private ?float $totalPrelevement null;
  23.     #[ORM\Column(nullabletrue)]
  24.     private ?float $cnssPs null;
  25.     #[ORM\Column(nullabletrue)]
  26.     private ?float $cnssPp null;
  27.     #[ORM\Column(nullabletrue)]
  28.     private ?float $cimrPp null;
  29.     #[ORM\Column(nullabletrue)]
  30.     private ?float $cimrPs null;
  31.     #[ORM\Column(nullabletrue)]
  32.     private ?float $ir null;
  33.     #[ORM\Column(nullabletrue)]
  34.     private ?float $netTheorique null;
  35.     #[ORM\Column(nullabletrue)]
  36.     private ?float $netFinal null;
  37.     #[ORM\ManyToOne]
  38.     private ?TBulletin $bulletin null;
  39.   
  40.     public function getId(): ?int
  41.     {
  42.         return $this->id;
  43.     }
  44.     public function getCab(): ?SyntheseRemunarationCab
  45.     {
  46.         return $this->cab;
  47.     }
  48.     public function setCab(?SyntheseRemunarationCab $cab): static
  49.     {
  50.         $this->cab $cab;
  51.         return $this;
  52.     }
  53.     
  54.     public function getSalaireBruteImposable(): ?float
  55.     {
  56.         return $this->salaireBruteImposable;
  57.     }
  58.     public function setSalaireBruteImposable(?float $salaireBruteImposable): static
  59.     {
  60.         $this->salaireBruteImposable $salaireBruteImposable;
  61.         return $this;
  62.     }
  63.     public function getSalaireBrute(): ?float
  64.     {
  65.         return $this->salaireBrute;
  66.     }
  67.     public function setSalaireBrute(?float $salaireBrute): static
  68.     {
  69.         $this->salaireBrute $salaireBrute;
  70.         return $this;
  71.     }
  72.     public function getTotalPrimesNonImposable(): ?float
  73.     {
  74.         return $this->totalPrimesNonImposable;
  75.     }
  76.     public function setTotalPrimesNonImposable(?float $totalPrimesNonImposable): static
  77.     {
  78.         $this->totalPrimesNonImposable $totalPrimesNonImposable;
  79.         return $this;
  80.     }
  81.     public function getTotalPrelevement(): ?float
  82.     {
  83.         return $this->totalPrelevement;
  84.     }
  85.     public function setTotalPrelevement(?float $totalPrelevement): static
  86.     {
  87.         $this->totalPrelevement $totalPrelevement;
  88.         return $this;
  89.     }
  90.     public function getCnssPs(): ?float
  91.     {
  92.         return $this->cnssPs;
  93.     }
  94.     public function setCnssPs(?float $cnssPs): static
  95.     {
  96.         $this->cnssPs $cnssPs;
  97.         return $this;
  98.     }
  99.     public function getCnssPp(): ?float
  100.     {
  101.         return $this->cnssPp;
  102.     }
  103.     public function setCnssPp(?float $cnssPp): static
  104.     {
  105.         $this->cnssPp $cnssPp;
  106.         return $this;
  107.     }
  108.     public function getCimrPp(): ?float
  109.     {
  110.         return $this->cimrPp;
  111.     }
  112.     public function setCimrPp(?float $cimrPp): static
  113.     {
  114.         $this->cimrPp $cimrPp;
  115.         return $this;
  116.     }
  117.     public function getCimrPs(): ?float
  118.     {
  119.         return $this->cimrPs;
  120.     }
  121.     public function setCimrPs(?float $cimrPs): static
  122.     {
  123.         $this->cimrPs $cimrPs;
  124.         return $this;
  125.     }
  126.     public function getIr(): ?float
  127.     {
  128.         return $this->ir;
  129.     }
  130.     public function setIr(?float $ir): static
  131.     {
  132.         $this->ir $ir;
  133.         return $this;
  134.     }
  135.     public function getNetTheorique(): ?float
  136.     {
  137.         return $this->netTheorique;
  138.     }
  139.     public function setNetTheorique(?float $netTheorique): static
  140.     {
  141.         $this->netTheorique $netTheorique;
  142.         return $this;
  143.     }
  144.     public function getNetFinal(): ?float
  145.     {
  146.         return $this->netFinal;
  147.     }
  148.     public function setNetFinal(?float $netFinal): static
  149.     {
  150.         $this->netFinal $netFinal;
  151.         return $this;
  152.     }
  153.     public function getBulletin(): ?TBulletin
  154.     {
  155.         return $this->bulletin;
  156.     }
  157.     public function setBulletin(?TBulletin $bulletin): static
  158.     {
  159.         $this->bulletin $bulletin;
  160.         return $this;
  161.     }
  162.  
  163. }