src/Entity/ContactRondier.php line 9

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ContactRondierRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassContactRondierRepository::class)]
  6. class ContactRondier
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255)]
  13.     private ?string $name null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $firstname null;
  16.     #[ORM\Column(length255)]
  17.     private ?string $society null;
  18.     #[ORM\Column]
  19.     private ?int $phone null;
  20.     #[ORM\Column(length255)]
  21.     private ?string $email null;
  22.     #[ORM\Column(length255)]
  23.     private ?string $services null;
  24.     #[ORM\Column(length255)]
  25.     private ?string $subject null;
  26.     #[ORM\Column(length255)]
  27.     private ?string $city null;
  28.     #[ORM\Column(length255)]
  29.     private ?string $zip null;
  30.     #[ORM\Column(length255)]
  31.     private ?string $adresse null;
  32.     public function getId(): ?int
  33.     {
  34.         return $this->id;
  35.     }
  36.     public function getName(): ?string
  37.     {
  38.         return $this->name;
  39.     }
  40.     public function setName(string $name): self
  41.     {
  42.         $this->name $name;
  43.         return $this;
  44.     }
  45.     public function getFirstname(): ?string
  46.     {
  47.         return $this->firstname;
  48.     }
  49.     public function setFirstname(string $firstname): self
  50.     {
  51.         $this->firstname $firstname;
  52.         return $this;
  53.     }
  54.     public function getSociety(): ?string
  55.     {
  56.         return $this->society;
  57.     }
  58.     public function setSociety(string $society): self
  59.     {
  60.         $this->society $society;
  61.         return $this;
  62.     }
  63.     public function getPhone(): ?int
  64.     {
  65.         return $this->phone;
  66.     }
  67.     public function setPhone(int $phone): self
  68.     {
  69.         $this->phone $phone;
  70.         return $this;
  71.     }
  72.     public function getEmail(): ?string
  73.     {
  74.         return $this->email;
  75.     }
  76.     public function setEmail(string $email): self
  77.     {
  78.         $this->email $email;
  79.         return $this;
  80.     }
  81.     public function getServices(): ?string
  82.     {
  83.         return $this->services;
  84.     }
  85.     public function setServices(string $services): self
  86.     {
  87.         $this->services $services;
  88.         return $this;
  89.     }
  90.     public function getSubject(): ?string
  91.     {
  92.         return $this->subject;
  93.     }
  94.     public function setSubject(string $subject): self
  95.     {
  96.         $this->subject $subject;
  97.         return $this;
  98.     }
  99.     public function getCity(): ?string
  100.     {
  101.         return $this->city;
  102.     }
  103.     public function setCity(string $city): self
  104.     {
  105.         $this->city $city;
  106.         return $this;
  107.     }
  108.     public function getZip(): ?string
  109.     {
  110.         return $this->zip;
  111.     }
  112.     public function setZip(string $zip): self
  113.     {
  114.         $this->zip $zip;
  115.         return $this;
  116.     }
  117.     public function getAdresse(): ?string
  118.     {
  119.         return $this->adresse;
  120.     }
  121.     public function setAdresse(string $adresse): self
  122.     {
  123.         $this->adresse $adresse;
  124.         return $this;
  125.     }
  126. }