src/Entity/Entreprise.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\EntrepriseRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=EntrepriseRepository::class)
  7.  */
  8. class Entreprise
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $RaisonSociale;
  20.     /**
  21.      * @ORM\Column(type="string", length=255, nullable=true)
  22.      */
  23.     private $Siret;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $Naf;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $Adresse;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $Code_Insee;
  36.     /**
  37.      * @ORM\Column(type="string", length=255, nullable=true)
  38.      */
  39.     private $Statut;
  40.     /**
  41.      * @ORM\Column(type="string", length=255, nullable=true)
  42.      */
  43.     private $Utilisateur;
  44.     /**
  45.      * @ORM\Column(type="string", length=255, nullable=true)
  46.      */
  47.     private $rcs;
  48.     /**
  49.      * @ORM\Column(type="string", length=255, nullable=true)
  50.      */
  51.     private $num_voie;
  52.     /**
  53.      * @ORM\Column(type="string", length=255, nullable=true)
  54.      */
  55.     private $code_postal;
  56.     /**
  57.      * @ORM\Column(type="string", length=255, nullable=true)
  58.      */
  59.     private $commune;
  60.     public function getId(): ?int
  61.     {
  62.         return $this->id;
  63.     }
  64.     public function getRaisonSociale(): ?string
  65.     {
  66.         return $this->RaisonSociale;
  67.     }
  68.     public function setRaisonSociale(string $RaisonSociale): self
  69.     {
  70.         $this->RaisonSociale $RaisonSociale;
  71.         return $this;
  72.     }
  73.     public function getSiret(): ?string
  74.     {
  75.         return $this->Siret;
  76.     }
  77.     public function setSiret(string $Siret): self
  78.     {
  79.         $this->Siret $Siret;
  80.         return $this;
  81.     }
  82.     public function getNaf(): ?string
  83.     {
  84.         return $this->Naf;
  85.     }
  86.     public function setNaf(string $Naf): self
  87.     {
  88.         $this->Naf $Naf;
  89.         return $this;
  90.     }
  91.     public function getAdresse(): ?string
  92.     {
  93.         return $this->Adresse;
  94.     }
  95.     public function setAdresse(string $Adresse): self
  96.     {
  97.         $this->Adresse $Adresse;
  98.         return $this;
  99.     }
  100.     public function getCodeInsee(): ?string
  101.     {
  102.         return $this->Code_Insee;
  103.     }
  104.     public function setCodeInsee(string $Code_Insee): self
  105.     {
  106.         $this->Code_Insee $Code_Insee;
  107.         return $this;
  108.     }
  109.     public function getStatut(): ?string
  110.     {
  111.         return $this->Statut;
  112.     }
  113.     public function setStatut(?string $Statut): self
  114.     {
  115.         $this->Statut $Statut;
  116.         return $this;
  117.     }
  118.     public function getUtilisateur(): ?string
  119.     {
  120.         return $this->Utilisateur;
  121.     }
  122.     public function setUtilisateur(?string $Utilisateur): self
  123.     {
  124.         $this->Utilisateur $Utilisateur;
  125.         return $this;
  126.     }
  127.     public function getRcs(): ?string
  128.     {
  129.         return $this->rcs;
  130.     }
  131.     public function setRcs(?string $rcs): self
  132.     {
  133.         $this->rcs $rcs;
  134.         return $this;
  135.     }
  136.     public function getNumVoie(): ?string
  137.     {
  138.         return $this->num_voie;
  139.     }
  140.     public function setNumVoie(?string $num_voie): self
  141.     {
  142.         $this->num_voie $num_voie;
  143.         return $this;
  144.     }
  145.     public function getCodePostal(): ?string
  146.     {
  147.         return $this->code_postal;
  148.     }
  149.     public function setCodePostal(?string $code_postal): self
  150.     {
  151.         $this->code_postal $code_postal;
  152.         return $this;
  153.     }
  154.     public function getCommune(): ?string
  155.     {
  156.         return $this->commune;
  157.     }
  158.     public function setCommune(?string $commune): self
  159.     {
  160.         $this->commune $commune;
  161.         return $this;
  162.     }
  163. }