src/Entity/RecyclinkInformations.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\RecyclinkInformationsRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=RecyclinkInformationsRepository::class)
  7.  */
  8. class RecyclinkInformations
  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 $la_firstname;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private $la_lastname;
  24.     /**
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.     private $adresse;
  28.     /**
  29.      * @ORM\Column(type="string", length=255)
  30.      */
  31.     private $codePostal;
  32.     /**
  33.      * @ORM\Column(type="string", length=255)
  34.      */
  35.     private $ville;
  36.     /**
  37.      * @ORM\Column(type="string", length=255)
  38.      */
  39.     private $siret;
  40.     /**
  41.      * @ORM\Column(type="string", length=255)
  42.      */
  43.     private $phone;
  44.     /**
  45.      * @ORM\Column(type="string", length=255)
  46.      */
  47.     private $email;
  48.     /**
  49.      * @ORM\Column(type="string", length=255)
  50.      */
  51.     private $pk_stripe;
  52.     /**
  53.      * @ORM\Column(type="string", length=255)
  54.      */
  55.     private $sk_stripe;
  56.     public function getId(): ?int
  57.     {
  58.         return $this->id;
  59.     }
  60.     public function getLaFirstname(): ?string
  61.     {
  62.         return $this->la_firstname;
  63.     }
  64.     public function setLaFirstname(string $la_firstname): self
  65.     {
  66.         $this->la_firstname $la_firstname;
  67.         return $this;
  68.     }
  69.     public function getLaLastname(): ?string
  70.     {
  71.         return $this->la_lastname;
  72.     }
  73.     public function setLaLastname(string $la_lastname): self
  74.     {
  75.         $this->la_lastname $la_lastname;
  76.         return $this;
  77.     }
  78.     public function getAdresse(): ?string
  79.     {
  80.         return $this->adresse;
  81.     }
  82.     public function setAdresse(string $adresse): self
  83.     {
  84.         $this->adresse $adresse;
  85.         return $this;
  86.     }
  87.     public function getCodePostal(): ?string
  88.     {
  89.         return $this->codePostal;
  90.     }
  91.     public function setCodePostal(string $codePostal): self
  92.     {
  93.         $this->codePostal $codePostal;
  94.         return $this;
  95.     }
  96.     public function getVille(): ?string
  97.     {
  98.         return $this->ville;
  99.     }
  100.     public function setVille(string $ville): self
  101.     {
  102.         $this->ville $ville;
  103.         return $this;
  104.     }
  105.     public function getSiret(): ?string
  106.     {
  107.         return $this->siret;
  108.     }
  109.     public function setSiret(string $siret): self
  110.     {
  111.         $this->siret $siret;
  112.         return $this;
  113.     }
  114.     public function getPhone(): ?string
  115.     {
  116.         return $this->phone;
  117.     }
  118.     public function setPhone(string $phone): self
  119.     {
  120.         $this->phone $phone;
  121.         return $this;
  122.     }
  123.     public function getEmail(): ?string
  124.     {
  125.         return $this->email;
  126.     }
  127.     public function setEmail(string $email): self
  128.     {
  129.         $this->email $email;
  130.         return $this;
  131.     }
  132.     public function getPkStripe(): ?string
  133.     {
  134.         return $this->pk_stripe;
  135.     }
  136.     public function setPkStripe(string $pk_stripe): self
  137.     {
  138.         $this->pk_stripe $pk_stripe;
  139.         return $this;
  140.     }
  141.     public function getSkStripe(): ?string
  142.     {
  143.         return $this->sk_stripe;
  144.     }
  145.     public function setSkStripe(string $sk_stripe): self
  146.     {
  147.         $this->sk_stripe $sk_stripe;
  148.         return $this;
  149.     }
  150. }