src/Entity/Evosimul.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\EvosimulRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=EvosimulRepository::class)
  7.  */
  8. class Evosimul
  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)
  26.      */
  27.     private $cp;
  28.     /**
  29.      * @ORM\Column(type="string", length=255)
  30.      */
  31.     private $ville;
  32.     /**
  33.      * @ORM\Column(type="string", length=255)
  34.      */
  35.     private $tel;
  36.     /**
  37.      * @ORM\Column(type="string", length=255)
  38.      */
  39.     private $email;
  40.     /**
  41.      * @ORM\Column(type="integer")
  42.      */
  43.     private $const;
  44.     /**
  45.      * @ORM\Column(type="string", length=255)
  46.      */
  47.     private $m2;
  48.     /**
  49.      * @ORM\Column(type="integer")
  50.      */
  51.     private $chauf;
  52.     /**
  53.      * @ORM\Column(type="integer")
  54.      */
  55.     private $depart;
  56.     /**
  57.      * @ORM\Column(type="text")
  58.      */
  59.     private $comments;
  60.     /**
  61.      * @ORM\Column(type="string", length=255, nullable=true)
  62.      */
  63.     private $projet;
  64.     /**
  65.      * @ORM\Column(type="string", length=255, nullable=true)
  66.      */
  67.     private $type;
  68.     /**
  69.      * @ORM\Column(type="string", length=255, nullable=true)
  70.      */
  71.     private $sujet;
  72.     /**
  73.      * @ORM\Column(type="boolean")
  74.      */
  75.     private $rappel;
  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 getCp(): ?string
  99.     {
  100.         return $this->cp;
  101.     }
  102.     public function setCp(string $cp): self
  103.     {
  104.         $this->cp $cp;
  105.         return $this;
  106.     }
  107.     public function getVille(): ?string
  108.     {
  109.         return $this->ville;
  110.     }
  111.     public function setVille(string $ville): self
  112.     {
  113.         $this->ville $ville;
  114.         return $this;
  115.     }
  116.     public function getTel(): ?string
  117.     {
  118.         return $this->tel;
  119.     }
  120.     public function setTel(string $tel): self
  121.     {
  122.         $this->tel $tel;
  123.         return $this;
  124.     }
  125.     public function getEmail(): ?string
  126.     {
  127.         return $this->email;
  128.     }
  129.     public function setEmail(string $email): self
  130.     {
  131.         $this->email $email;
  132.         return $this;
  133.     }
  134.     public function getConst(): ?int
  135.     {
  136.         return $this->const;
  137.     }
  138.     public function setConst(int $const): self
  139.     {
  140.         $this->const $const;
  141.         return $this;
  142.     }
  143.     public function getM2(): ?string
  144.     {
  145.         return $this->m2;
  146.     }
  147.     public function setM2(string $m2): self
  148.     {
  149.         $this->m2 $m2;
  150.         return $this;
  151.     }
  152.     public function getChauf(): ?int
  153.     {
  154.         return $this->chauf;
  155.     }
  156.     public function setChauf(int $chauf): self
  157.     {
  158.         $this->chauf $chauf;
  159.         return $this;
  160.     }
  161.     public function getDepart(): ?int
  162.     {
  163.         return $this->depart;
  164.     }
  165.     public function setDepart(int $depart): self
  166.     {
  167.         $this->depart $depart;
  168.         return $this;
  169.     }
  170.     public function getComments(): ?string
  171.     {
  172.         return $this->comments;
  173.     }
  174.     public function setComments(string $comments): self
  175.     {
  176.         $this->comments $comments;
  177.         return $this;
  178.     }
  179.     public function getProjet(): ?string
  180.     {
  181.         return $this->projet;
  182.     }
  183.     public function setProjet(?string $projet): self
  184.     {
  185.         $this->projet $projet;
  186.         return $this;
  187.     }
  188.     public function getType(): ?string
  189.     {
  190.         return $this->type;
  191.     }
  192.     public function setType(?string $type): self
  193.     {
  194.         $this->type $type;
  195.         return $this;
  196.     }
  197.     public function getSujet(): ?string
  198.     {
  199.         return $this->sujet;
  200.     }
  201.     public function setSujet(?string $sujet): self
  202.     {
  203.         $this->sujet $sujet;
  204.         return $this;
  205.     }
  206.     public function isRappel(): ?bool
  207.     {
  208.         return $this->rappel;
  209.     }
  210.     public function setRappel(bool $rappel): self
  211.     {
  212.         $this->rappel $rappel;
  213.         return $this;
  214.     }
  215. }