src/Entity/TCnssB02.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TCnssB02Repository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassTCnssB02Repository::class)]
  6. class TCnssB02
  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(length2nullabletrue)]
  23.     private ?string $enfants null;
  24.     #[ORM\Column(length6nullabletrue)]
  25.     private ?string $afAPayer null;
  26.     #[ORM\Column(length6nullabletrue)]
  27.     private ?string $afADeduire null;
  28.     #[ORM\Column(length6nullabletrue)]
  29.     private ?string $afNetAPayer null;
  30.     #[ORM\Column(length6nullabletrue)]
  31.     private ?string $afAReverser null;
  32.     #[ORM\Column(length2nullabletrue)]
  33.     private ?string $nJoursDeclares null;
  34.     #[ORM\Column(length13nullabletrue)]
  35.     private ?string $nSalaireReel null;
  36.     #[ORM\Column(length9nullabletrue)]
  37.     private ?string $nSalairePlaf null;
  38.     #[ORM\Column(length2,nullabletrue)]
  39.     private ?string $lSituation null;
  40.     #[ORM\Column(nullabletrue)]
  41.     private ?int $lSituationNum null;
  42.     #[ORM\Column(length19nullabletrue)]
  43.     private ?string $sCtr null;
  44.     #[ORM\Column(length155nullabletrue)]
  45.     private ?string $filler null;
  46.     #[ORM\Column(length60nullabletrue)]
  47.     private ?string $site null;
  48.     #[ORM\Column(length60nullabletrue)]
  49.     private ?string $statut null;
  50.     #[ORM\ManyToOne(inversedBy'tCnssB02s')]
  51.     private ?LContract $contract null;
  52.     #[ORM\ManyToOne(inversedBy'tCnssB02s')]
  53.     private ?TCnssB00 $cnssb00 null;
  54.     #[ORM\Column(nullabletrue)]
  55.     private ?float $montantReel null;
  56.     #[ORM\Column(nullabletrue)]
  57.     private ?float $montantPlaf null;
  58.     public function getId(): ?int
  59.     {
  60.         return $this->id;
  61.     }
  62.     public function getTypeEnreg(): ?string
  63.     {
  64.         return $this->typeEnreg;
  65.     }
  66.     public function setTypeEnreg(?string $typeEnreg): static
  67.     {
  68.         $this->typeEnreg $typeEnreg;
  69.         return $this;
  70.     }
  71.     public function getNumAffilie(): ?string
  72.     {
  73.         return $this->numAffilie;
  74.     }
  75.     public function setNumAffilie(?string $numAffilie): static
  76.     {
  77.         $this->numAffilie $numAffilie;
  78.         return $this;
  79.     }
  80.     public function getPeriode(): ?string
  81.     {
  82.         return $this->periode;
  83.     }
  84.     public function setPeriode(?string $periode): static
  85.     {
  86.         $this->periode $periode;
  87.         return $this;
  88.     }
  89.     public function getNumAssure(): ?string
  90.     {
  91.         return $this->numAssure;
  92.     }
  93.     public function setNumAssure(?string $numAssure): static
  94.     {
  95.         $this->numAssure $numAssure;
  96.         return $this;
  97.     }
  98.     public function getNomPrenom(): ?string
  99.     {
  100.         return $this->nomPrenom;
  101.     }
  102.     public function setNomPrenom(?string $nomPrenom): static
  103.     {
  104.         $this->nomPrenom $nomPrenom;
  105.         return $this;
  106.     }
  107.     public function getEnfants(): ?string
  108.     {
  109.         return $this->enfants;
  110.     }
  111.     public function setEnfants(?string $enfants): static
  112.     {
  113.         $this->enfants $enfants;
  114.         return $this;
  115.     }
  116.     public function getAfAPayer(): ?string
  117.     {
  118.         return $this->afAPayer;
  119.     }
  120.     public function setAfAPayer(?string $afAPayer): static
  121.     {
  122.         $this->afAPayer $afAPayer;
  123.         return $this;
  124.     }
  125.     public function getAfADeduire(): ?string
  126.     {
  127.         return $this->afADeduire;
  128.     }
  129.     public function setAfADeduire(?string $afADeduire): static
  130.     {
  131.         $this->afADeduire $afADeduire;
  132.         return $this;
  133.     }
  134.     public function getAfNetAPayer(): ?string
  135.     {
  136.         return $this->afNetAPayer;
  137.     }
  138.     public function setAfNetAPayer(?string $afNetAPayer): static
  139.     {
  140.         $this->afNetAPayer $afNetAPayer;
  141.         return $this;
  142.     }
  143.     public function getAfAReverser(): ?string
  144.     {
  145.         return $this->afAReverser;
  146.     }
  147.     public function setAfAReverser(?string $afAReverser): static
  148.     {
  149.         $this->afAReverser $afAReverser;
  150.         return $this;
  151.     }
  152.     public function getNJoursDeclares(): ?string
  153.     {
  154.         return $this->nJoursDeclares;
  155.     }
  156.     public function setNJoursDeclares(?string $nJoursDeclares): static
  157.     {
  158.         $this->nJoursDeclares $nJoursDeclares;
  159.         return $this;
  160.     }
  161.     public function getNSalaireReel(): ?string
  162.     {
  163.         return $this->nSalaireReel;
  164.     }
  165.     public function setNSalaireReel(?string $nSalaireReel): static
  166.     {
  167.         $this->nSalaireReel $nSalaireReel;
  168.         return $this;
  169.     }
  170.     public function getNSalairePlaf(): ?string
  171.     {
  172.         return $this->nSalairePlaf;
  173.     }
  174.     public function setNSalairePlaf(?string $nSalairePlaf): static
  175.     {
  176.         $this->nSalairePlaf $nSalairePlaf;
  177.         return $this;
  178.     }
  179.     public function getLSituationNum(): ?int
  180.     {
  181.         return $this->lSituationNum;
  182.     }
  183.     public function setLSituationNum(?int $lSituationNum): static
  184.     {
  185.         $this->lSituationNum $lSituationNum;
  186.         return $this;
  187.     }
  188.     public function getLSituation(): ?string
  189.     {
  190.         return $this->lSituation;
  191.     }
  192.     public function setLSituation(?string $lSituation): static
  193.     {
  194.         $this->lSituation $lSituation;
  195.         return $this;
  196.     }
  197.     public function getSCtr(): ?string
  198.     {
  199.         return $this->sCtr;
  200.     }
  201.     public function setSCtr(?string $sCtr): static
  202.     {
  203.         $this->sCtr $sCtr;
  204.         return $this;
  205.     }
  206.     public function getFiller(): ?string
  207.     {
  208.         return $this->filler;
  209.     }
  210.     public function setFiller(?string $filler): static
  211.     {
  212.         $this->filler $filler;
  213.         return $this;
  214.     }
  215.     public function getSite(): ?string
  216.     {
  217.         return $this->site;
  218.     }
  219.     public function setSite(?string $site): static
  220.     {
  221.         $this->site $site;
  222.         return $this;
  223.     }
  224.     public function getStatut(): ?string
  225.     {
  226.         return $this->statut;
  227.     }
  228.     public function setStatut(?string $statut): static
  229.     {
  230.         $this->statut $statut;
  231.         return $this;
  232.     }
  233.     public function getContract(): ?LContract
  234.     {
  235.         return $this->contract;
  236.     }
  237.     public function setContract(?LContract $contract): static
  238.     {
  239.         $this->contract $contract;
  240.         return $this;
  241.     }
  242.     public function getCnssb00(): ?TCnssB00
  243.     {
  244.         return $this->cnssb00;
  245.     }
  246.     public function setCnssb00(?TCnssB00 $cnssb00): static
  247.     {
  248.         $this->cnssb00 $cnssb00;
  249.         return $this;
  250.     }
  251.     public function getMontantReel(): ?float
  252.     {
  253.         return $this->montantReel;
  254.     }
  255.     public function setMontantReel(?float $montantReel): static
  256.     {
  257.         $this->montantReel $montantReel;
  258.         return $this;
  259.     }
  260.     public function getMontantPlaf(): ?float
  261.     {
  262.         return $this->montantPlaf;
  263.     }
  264.     public function setMontantPlaf(?float $montantPlaf): static
  265.     {
  266.         $this->montantPlaf $montantPlaf;
  267.         return $this;
  268.     }
  269. }