src/Entity/TCnssA01.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TCnssA01Repository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassTCnssA01Repository::class)]
  6. class TCnssA01
  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(length40nullabletrue)]
  19.     private ?string $raisonSociale null;
  20.     #[ORM\Column(length40nullabletrue)]
  21.     private ?string $activite null;
  22.     #[ORM\Column(length120nullabletrue)]
  23.     private ?string $adresse null;
  24.     #[ORM\Column(length20nullabletrue)]
  25.     private ?string $ville null;
  26.     #[ORM\Column(length6nullabletrue)]
  27.     private ?string $codePostal null;
  28.     #[ORM\Column(length2nullabletrue)]
  29.     private ?string $codeAgence null;
  30.     #[ORM\Column(length8nullabletrue)]
  31.     private ?string $dateEmission null;
  32.     #[ORM\Column(length8nullabletrue)]
  33.     private ?string $dateExig null;
  34.     #[ORM\ManyToOne(inversedBy'tCnssA01s')]
  35.     private ?TCnssA00 $cnssa00 null;
  36.     public function getId(): ?int
  37.     {
  38.         return $this->id;
  39.     }
  40.     public function getTypeEnreg(): ?string
  41.     {
  42.         return $this->typeEnreg;
  43.     }
  44.     public function setTypeEnreg(?string $typeEnreg): static
  45.     {
  46.         $this->typeEnreg $typeEnreg;
  47.         return $this;
  48.     }
  49.     public function getNumAffilie(): ?string
  50.     {
  51.         return $this->numAffilie;
  52.     }
  53.     public function setNumAffilie(?string $numAffilie): static
  54.     {
  55.         $this->numAffilie $numAffilie;
  56.         return $this;
  57.     }
  58.     public function getPeriode(): ?string
  59.     {
  60.         return $this->periode;
  61.     }
  62.     public function setPeriode(?string $periode): static
  63.     {
  64.         $this->periode $periode;
  65.         return $this;
  66.     }
  67.     public function getRaisonSociale(): ?string
  68.     {
  69.         return $this->raisonSociale;
  70.     }
  71.     public function setRaisonSociale(?string $raisonSociale): static
  72.     {
  73.         $this->raisonSociale $raisonSociale;
  74.         return $this;
  75.     }
  76.     public function getActivite(): ?string
  77.     {
  78.         return $this->activite;
  79.     }
  80.     public function setActivite(?string $activite): static
  81.     {
  82.         $this->activite $activite;
  83.         return $this;
  84.     }
  85.     public function getAdresse(): ?string
  86.     {
  87.         return $this->adresse;
  88.     }
  89.     public function setAdresse(?string $adresse): static
  90.     {
  91.         $this->adresse $adresse;
  92.         return $this;
  93.     }
  94.     public function getVille(): ?string
  95.     {
  96.         return $this->ville;
  97.     }
  98.     public function setVille(?string $ville): static
  99.     {
  100.         $this->ville $ville;
  101.         return $this;
  102.     }
  103.     public function getCodePostal(): ?string
  104.     {
  105.         return $this->codePostal;
  106.     }
  107.     public function setCodePostal(?string $codePostal): static
  108.     {
  109.         $this->codePostal $codePostal;
  110.         return $this;
  111.     }
  112.     public function getCodeAgence(): ?string
  113.     {
  114.         return $this->codeAgence;
  115.     }
  116.     public function setCodeAgence(?string $codeAgence): static
  117.     {
  118.         $this->codeAgence $codeAgence;
  119.         return $this;
  120.     }
  121.     public function getDateEmission(): ?string
  122.     {
  123.         return $this->dateEmission;
  124.     }
  125.     public function setDateEmission(?string $dateEmission): static
  126.     {
  127.         $this->dateEmission $dateEmission;
  128.         return $this;
  129.     }
  130.     public function getDateExig(): ?string
  131.     {
  132.         return $this->dateExig;
  133.     }
  134.     public function setDateExig(?string $dateExig): static
  135.     {
  136.         $this->dateExig $dateExig;
  137.         return $this;
  138.     }
  139.     public function getCnssa00(): ?TCnssA00
  140.     {
  141.         return $this->cnssa00;
  142.     }
  143.     public function setCnssa00(?TCnssA00 $cnssa00): static
  144.     {
  145.         $this->cnssa00 $cnssa00;
  146.         return $this;
  147.     }
  148. }