src/Entity/TCnssB06.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TCnssB06Repository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassTCnssB06Repository::class)]
  6. class TCnssB06
  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(length6nullabletrue)]
  19.     private ?string $nbrSalaries null;
  20.     #[ORM\Column(length15nullabletrue)]
  21.     private ?string $tNumImma null;
  22.     #[ORM\Column(length6nullabletrue)]
  23.     private ?string $tJoursDeclares null;
  24.     #[ORM\Column(length15nullabletrue)]
  25.     private ?string $tSalaireReel null;
  26.     #[ORM\Column(length13nullabletrue)]
  27.     private ?string $tSalairePlaf null;
  28.     #[ORM\Column(length19nullabletrue)]
  29.     private ?string $tCtr null;
  30.     #[ORM\Column(length170nullabletrue)]
  31.     private ?string $filler null;
  32.     #[ORM\ManyToOne(inversedBy'tCnssB06s')]
  33.     private ?TCnssB00 $cnssb00 null;
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getTypeEnreg(): ?string
  39.     {
  40.         return $this->typeEnreg;
  41.     }
  42.     public function setTypeEnreg(?string $typeEnreg): static
  43.     {
  44.         $this->typeEnreg $typeEnreg;
  45.         return $this;
  46.     }
  47.     public function getNumAffilie(): ?string
  48.     {
  49.         return $this->numAffilie;
  50.     }
  51.     public function setNumAffilie(?string $numAffilie): static
  52.     {
  53.         $this->numAffilie $numAffilie;
  54.         return $this;
  55.     }
  56.     public function getPeriode(): ?string
  57.     {
  58.         return $this->periode;
  59.     }
  60.     public function setPeriode(?string $periode): static
  61.     {
  62.         $this->periode $periode;
  63.         return $this;
  64.     }
  65.     public function getNbrSalaries(): ?string
  66.     {
  67.         return $this->nbrSalaries;
  68.     }
  69.     public function setNbrSalaries(?string $nbrSalaries): static
  70.     {
  71.         $this->nbrSalaries $nbrSalaries;
  72.         return $this;
  73.     }
  74.     public function getTNumImma(): ?string
  75.     {
  76.         return $this->tNumImma;
  77.     }
  78.     public function setTNumImma(?string $tNumImma): static
  79.     {
  80.         $this->tNumImma $tNumImma;
  81.         return $this;
  82.     }
  83.     public function getTJoursDeclares(): ?string
  84.     {
  85.         return $this->tJoursDeclares;
  86.     }
  87.     public function setTJoursDeclares(?string $tJoursDeclares): static
  88.     {
  89.         $this->tJoursDeclares $tJoursDeclares;
  90.         return $this;
  91.     }
  92.     public function getTSalaireReel(): ?string
  93.     {
  94.         return $this->tSalaireReel;
  95.     }
  96.     public function setTSalaireReel(?string $tSalaireReel): static
  97.     {
  98.         $this->tSalaireReel $tSalaireReel;
  99.         return $this;
  100.     }
  101.     public function getTSalairePlaf(): ?string
  102.     {
  103.         return $this->tSalairePlaf;
  104.     }
  105.     public function setTSalairePlaf(?string $tSalairePlaf): static
  106.     {
  107.         $this->tSalairePlaf $tSalairePlaf;
  108.         return $this;
  109.     }
  110.     public function getTCtr(): ?string
  111.     {
  112.         return $this->tCtr;
  113.     }
  114.     public function setTCtr(?string $tCtr): static
  115.     {
  116.         $this->tCtr $tCtr;
  117.         return $this;
  118.     }
  119.     public function getFiller(): ?string
  120.     {
  121.         return $this->filler;
  122.     }
  123.     public function setFiller(?string $filler): static
  124.     {
  125.         $this->filler $filler;
  126.         return $this;
  127.     }
  128.     public function getCnssb00(): ?TCnssB00
  129.     {
  130.         return $this->cnssb00;
  131.     }
  132.     public function setCnssb00(?TCnssB00 $cnssb00): static
  133.     {
  134.         $this->cnssb00 $cnssb00;
  135.         return $this;
  136.     }
  137. }