src/Entity/TCnssB04.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TCnssB04Repository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassTCnssB04Repository::class)]
  6. class TCnssB04
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length3nullabletrue)]
  13.     private ?string $typeEnreg null;
  14.     #[ORM\Column(length7nullabletrue)]
  15.     private ?string $numAffilie null;
  16.     #[ORM\Column(length6nullabletrue)]
  17.     private ?string $periode null;
  18.     #[ORM\Column(length9nullabletrue)]
  19.     private ?string $numAssure null;
  20.     #[ORM\Column(length60nullabletrue)]
  21.     private ?string $nomPrenom null;
  22.     #[ORM\Column(length8nullabletrue)]
  23.     private ?string $numCin null;
  24.     #[ORM\Column(length2nullabletrue)]
  25.     private ?string $nbrJours null;
  26.     #[ORM\Column(length13nullabletrue)]
  27.     private ?string $salReel null;
  28.     #[ORM\Column(length9nullabletrue)]
  29.     private ?string $salPlaf null;
  30.     #[ORM\Column(length19nullabletrue)]
  31.     private ?string $sCtr null;
  32.     #[ORM\Column(length124nullabletrue)]
  33.     private ?string $filler null;
  34.     #[ORM\Column(length60nullabletrue)]
  35.     private ?string $site null;
  36.     #[ORM\ManyToOne(inversedBy'tCnssB04s')]
  37.     private ?LContract $contract null;
  38.     #[ORM\ManyToOne(inversedBy'tCnssB04s')]
  39.     private ?TCnssB00 $cnssb00 null;
  40.     #[ORM\Column(nullabletrue)]
  41.     private ?float $montantReel null;
  42.     #[ORM\Column(nullabletrue)]
  43.     private ?float $montantPlaf null;
  44.     public function getId(): ?int
  45.     {
  46.         return $this->id;
  47.     }
  48.     public function getTypeEnreg(): ?string
  49.     {
  50.         return $this->typeEnreg;
  51.     }
  52.     public function setTypeEnreg(?string $typeEnreg): static
  53.     {
  54.         $this->typeEnreg $typeEnreg;
  55.         return $this;
  56.     }
  57.     public function getNumAffilie(): ?string
  58.     {
  59.         return $this->numAffilie;
  60.     }
  61.     public function setNumAffilie(?string $numAffilie): static
  62.     {
  63.         $this->numAffilie $numAffilie;
  64.         return $this;
  65.     }
  66.     public function getPeriode(): ?string
  67.     {
  68.         return $this->periode;
  69.     }
  70.     public function setPeriode(?string $periode): static
  71.     {
  72.         $this->periode $periode;
  73.         return $this;
  74.     }
  75.     public function getNumAssure(): ?string
  76.     {
  77.         return $this->numAssure;
  78.     }
  79.     public function setNumAssure(?string $numAssure): static
  80.     {
  81.         $this->numAssure $numAssure;
  82.         return $this;
  83.     }
  84.     public function getNomPrenom(): ?string
  85.     {
  86.         return $this->nomPrenom;
  87.     }
  88.     public function setNomPrenom(?string $nomPrenom): static
  89.     {
  90.         $this->nomPrenom $nomPrenom;
  91.         return $this;
  92.     }
  93.     public function getNumCin(): ?string
  94.     {
  95.         return $this->numCin;
  96.     }
  97.     public function setNumCin(?string $numCin): static
  98.     {
  99.         $this->numCin $numCin;
  100.         return $this;
  101.     }
  102.     public function getNbrJours(): ?string
  103.     {
  104.         return $this->nbrJours;
  105.     }
  106.     public function setNbrJours(?string $nbrJours): static
  107.     {
  108.         $this->nbrJours $nbrJours;
  109.         return $this;
  110.     }
  111.     public function getSalReel(): ?string
  112.     {
  113.         return $this->salReel;
  114.     }
  115.     public function setSalReel(?string $salReel): static
  116.     {
  117.         $this->salReel $salReel;
  118.         return $this;
  119.     }
  120.     public function getSalPlaf(): ?string
  121.     {
  122.         return $this->salPlaf;
  123.     }
  124.     public function setSalPlaf(?string $salPlaf): static
  125.     {
  126.         $this->salPlaf $salPlaf;
  127.         return $this;
  128.     }
  129.     public function getSCtr(): ?string
  130.     {
  131.         return $this->sCtr;
  132.     }
  133.     public function setSCtr(?string $sCtr): static
  134.     {
  135.         $this->sCtr $sCtr;
  136.         return $this;
  137.     }
  138.     public function getFiller(): ?string
  139.     {
  140.         return $this->filler;
  141.     }
  142.     public function setFiller(?string $filler): static
  143.     {
  144.         $this->filler $filler;
  145.         return $this;
  146.     }
  147.     public function getSite(): ?string
  148.     {
  149.         return $this->site;
  150.     }
  151.     public function setSite(?string $site): static
  152.     {
  153.         $this->site $site;
  154.         return $this;
  155.     }
  156.     public function getContract(): ?LContract
  157.     {
  158.         return $this->contract;
  159.     }
  160.     public function setContract(?LContract $contract): static
  161.     {
  162.         $this->contract $contract;
  163.         return $this;
  164.     }
  165.     public function getCnssb00(): ?TCnssB00
  166.     {
  167.         return $this->cnssb00;
  168.     }
  169.     public function setCnssb00(?TCnssB00 $cnssb00): static
  170.     {
  171.         $this->cnssb00 $cnssb00;
  172.         return $this;
  173.     }
  174.     public function getMontantReel(): ?float
  175.     {
  176.         return $this->montantReel;
  177.     }
  178.     public function setMontantReel(?float $montantReel): static
  179.     {
  180.         $this->montantReel $montantReel;
  181.         return $this;
  182.     }
  183.     public function getMontantPlaf(): ?float
  184.     {
  185.         return $this->montantPlaf;
  186.     }
  187.     public function setMontantPlaf(?float $montantPlaf): static
  188.     {
  189.         $this->montantPlaf $montantPlaf;
  190.         return $this;
  191.     }
  192. }