src/Entity/PharmacieList.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PharmacieListRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=PharmacieListRepository::class)
  7.  */
  8. class PharmacieList
  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 $designation;
  20.     /**
  21.      * @ORM\Column(type="string", length=255, nullable=true)
  22.      */
  23.     private $adresse;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $ville;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $pays;
  32.     /**
  33.      * @ORM\Column(type="string", length=255)
  34.      */
  35.     private $mail;
  36.     /**
  37.      * @ORM\Column(type="string", length=255, nullable=true)
  38.      */
  39.     private $nordre;
  40.     /**
  41.      * @ORM\Column(type="boolean", nullable=true)
  42.      */
  43.     private $isInscrit;
  44.     /**
  45.      * @ORM\Column(type="datetime", nullable=true)
  46.      */
  47.     private $dateInvitation;
  48.     public function getId(): ?int
  49.     {
  50.         return $this->id;
  51.     }
  52.     public function getDesignation(): ?string
  53.     {
  54.         return $this->designation;
  55.     }
  56.     public function setDesignation(string $designation): self
  57.     {
  58.         $this->designation $designation;
  59.         return $this;
  60.     }
  61.     public function getAdresse(): ?string
  62.     {
  63.         return $this->adresse;
  64.     }
  65.     public function setAdresse(?string $adresse): self
  66.     {
  67.         $this->adresse $adresse;
  68.         return $this;
  69.     }
  70.     public function getVille(): ?string
  71.     {
  72.         return $this->ville;
  73.     }
  74.     public function setVille(?string $ville): self
  75.     {
  76.         $this->ville $ville;
  77.         return $this;
  78.     }
  79.     public function getPays(): ?string
  80.     {
  81.         return $this->pays;
  82.     }
  83.     public function setPays(?string $pays): self
  84.     {
  85.         $this->pays $pays;
  86.         return $this;
  87.     }
  88.     public function getMail(): ?string
  89.     {
  90.         return $this->mail;
  91.     }
  92.     public function setMail(string $mail): self
  93.     {
  94.         $this->mail $mail;
  95.         return $this;
  96.     }
  97.     public function getNordre(): ?string
  98.     {
  99.         return $this->nordre;
  100.     }
  101.     public function setNordre(?string $nordre): self
  102.     {
  103.         $this->nordre $nordre;
  104.         return $this;
  105.     }
  106.     public function isIsInscrit(): ?bool
  107.     {
  108.         return $this->isInscrit;
  109.     }
  110.     public function setIsInscrit(?bool $isInscrit): self
  111.     {
  112.         $this->isInscrit $isInscrit;
  113.         return $this;
  114.     }
  115.     public function getDateInvitation(): ?\DateTimeInterface
  116.     {
  117.         return $this->dateInvitation;
  118.     }
  119.     public function setDateInvitation(?\DateTimeInterface $dateInvitation): self
  120.     {
  121.         $this->dateInvitation $dateInvitation;
  122.         return $this;
  123.     }
  124. }