src/Entity/Franchise.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FranchiseRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=FranchiseRepository::class)
  7.  */
  8. class Franchise
  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 $nom;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private $prenom;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $adresse;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $cp;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $ville;
  36.     /**
  37.      * @ORM\Column(type="string", length=255, nullable=true)
  38.      */
  39.     private $departement;
  40.     /**
  41.      * @ORM\Column(type="string", length=255, nullable=true)
  42.      */
  43.     private $pays;
  44.     /**
  45.      * @ORM\Column(type="string", length=255)
  46.      */
  47.     private $mail;
  48.     /**
  49.      * @ORM\Column(type="string", length=255)
  50.      */
  51.     private $telephone;
  52.     /**
  53.      * @ORM\Column(type="string", length=255)
  54.      */
  55.     private $secteur;
  56.     /**
  57.      * @ORM\Column(type="string", length=255)
  58.      */
  59.     private $apport;
  60.     /**
  61.      * @ORM\Column(type="string", length=255, nullable=true)
  62.      */
  63.     private $apportcomplement;
  64.     /**
  65.      * @ORM\Column(type="boolean")
  66.      */
  67.     private $local;
  68.     /**
  69.      * @ORM\Column(type="string", length=255)
  70.      */
  71.     private $echeance;
  72.     /**
  73.      * @ORM\Column(type="text", nullable=true)
  74.      */
  75.     private $message;
  76.     public function getId(): ?int
  77.     {
  78.         return $this->id;
  79.     }
  80.     public function getNom(): ?string
  81.     {
  82.         return $this->nom;
  83.     }
  84.     public function setNom(string $nom): self
  85.     {
  86.         $this->nom $nom;
  87.         return $this;
  88.     }
  89.     public function getPrenom(): ?string
  90.     {
  91.         return $this->prenom;
  92.     }
  93.     public function setPrenom(string $prenom): self
  94.     {
  95.         $this->prenom $prenom;
  96.         return $this;
  97.     }
  98.     public function getAdresse(): ?string
  99.     {
  100.         return $this->adresse;
  101.     }
  102.     public function setAdresse(?string $adresse): self
  103.     {
  104.         $this->adresse $adresse;
  105.         return $this;
  106.     }
  107.     public function getCp(): ?string
  108.     {
  109.         return $this->cp;
  110.     }
  111.     public function setCp(?string $cp): self
  112.     {
  113.         $this->cp $cp;
  114.         return $this;
  115.     }
  116.     public function getVille(): ?string
  117.     {
  118.         return $this->ville;
  119.     }
  120.     public function setVille(?string $ville): self
  121.     {
  122.         $this->ville $ville;
  123.         return $this;
  124.     }
  125.     public function getDepartement(): ?string
  126.     {
  127.         return $this->departement;
  128.     }
  129.     public function setDepartement(?string $departement): self
  130.     {
  131.         $this->departement $departement;
  132.         return $this;
  133.     }
  134.     public function getPays(): ?string
  135.     {
  136.         return $this->pays;
  137.     }
  138.     public function setPays(?string $pays): self
  139.     {
  140.         $this->pays $pays;
  141.         return $this;
  142.     }
  143.     public function getMail(): ?string
  144.     {
  145.         return $this->mail;
  146.     }
  147.     public function setMail(string $mail): self
  148.     {
  149.         $this->mail $mail;
  150.         return $this;
  151.     }
  152.     public function getTelephone(): ?string
  153.     {
  154.         return $this->telephone;
  155.     }
  156.     public function setTelephone(string $telephone): self
  157.     {
  158.         $this->telephone $telephone;
  159.         return $this;
  160.     }
  161.     public function getSecteur(): ?string
  162.     {
  163.         return $this->secteur;
  164.     }
  165.     public function setSecteur(string $secteur): self
  166.     {
  167.         $this->secteur $secteur;
  168.         return $this;
  169.     }
  170.     public function getApport(): ?string
  171.     {
  172.         return $this->apport;
  173.     }
  174.     public function setApport(string $apport): self
  175.     {
  176.         $this->apport $apport;
  177.         return $this;
  178.     }
  179.     public function getApportcomplement(): ?string
  180.     {
  181.         return $this->apportcomplement;
  182.     }
  183.     public function setApportcomplement(?string $apportcomplement): self
  184.     {
  185.         $this->apportcomplement $apportcomplement;
  186.         return $this;
  187.     }
  188.     public function isLocal(): ?bool
  189.     {
  190.         return $this->local;
  191.     }
  192.     public function setLocal(bool $local): self
  193.     {
  194.         $this->local $local;
  195.         return $this;
  196.     }
  197.     public function getEcheance(): ?string
  198.     {
  199.         return $this->echeance;
  200.     }
  201.     public function setEcheance(string $echeance): self
  202.     {
  203.         $this->echeance $echeance;
  204.         return $this;
  205.     }
  206.     public function getMessage(): ?string
  207.     {
  208.         return $this->message;
  209.     }
  210.     public function setMessage(string $message): self
  211.     {
  212.         $this->message $message;
  213.         return $this;
  214.     }
  215. }