src/Entity/ContactSsiap.php line 9

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