src/Entity/EvenementFormulaire.php line 17

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\BlogRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\HttpFoundation\File\File;
  6. use Vich\UploaderBundle\Mapping\Annotation as Vich;
  7. /**
  8.  * @ORM\Entity(repositoryClass=BlogRepository::class)
  9.  */
  10. /**
  11.  * @ORM\Entity
  12.  * @Vich\Uploadable
  13.  */
  14. class EvenementFormulaire
  15. {
  16.     /**
  17.      * @ORM\Id
  18.      * @ORM\GeneratedValue
  19.      * @ORM\Column(type="integer")
  20.      */
  21.     private $id;
  22.     
  23.   
  24.     /**
  25.      * @ORM\Column(type="integer")
  26.      */
  27.     private $evenement;
  28.     /**
  29.      * @ORM\Column(type="integer")
  30.      */
  31.     private $user;
  32.     /**
  33.      * @ORM\Column(type="boolean")
  34.      */
  35.     private $pay;
  36.      /**
  37.      * @ORM\Column(type="string", length=255)
  38.      */
  39.     private $montant;
  40.     /**
  41.      * @ORM\Column(type="string", length=255)
  42.      */
  43.     private $nom;
  44.     /**
  45.      * @ORM\Column(type="string", length=255)
  46.      */
  47.     private $prenom;
  48.     /**
  49.      * @ORM\Column(type="string", length=255)
  50.      */
  51.     private $email;
  52.      /**
  53.      * @ORM\Column(type="string", length=255)
  54.      */
  55.     
  56.     private $phone;
  57.     /**
  58.      * @ORM\Column(type="string", length=255)
  59.      */
  60.     private $type;
  61.       /**
  62.      * @ORM\Column(type="string", length=255)
  63.      */
  64.     private $fonction;
  65.   
  66.     public function getId(): ?int
  67.     {
  68.         return $this->id;
  69.     }
  70.     public function getNom(): ?string
  71.     {
  72.         return $this->nom;
  73.     }
  74.     public function setNom(string $nom): self
  75.     {
  76.         $this->nom $nom;
  77.         return $this;
  78.     }
  79.     public function getPrenom(): ?string
  80.     {
  81.         return $this->prenom;
  82.     }
  83.     public function setPrenom(string $prenom): self
  84.     {
  85.         $this->prenom $prenom;
  86.         return $this;
  87.     }
  88.     public function getPhone(): ?string
  89.     {
  90.         return $this->phone;
  91.     }
  92.     public function setPhone(string $phone): self
  93.     {
  94.         $this->phone $phone;
  95.         return $this;
  96.     }
  97.     /**** add email  */
  98.     public function getEmail(): ?string
  99.     {
  100.         return $this->email;
  101.     }
  102.     public function setEmail(string $email): self
  103.     {
  104.         $this->email $email;
  105.         return $this;
  106.     }
  107.     /****** */
  108.     public function getType(): ?string
  109.     {
  110.         return $this->type;
  111.     }
  112.     public function setType(string $type): self
  113.     {
  114.         $this->type $type;
  115.         return $this;
  116.     }
  117.     public function getFonction(): ?string
  118.     {
  119.         return $this->fonction;
  120.     }
  121.     public function setFonction(string $fonction): self
  122.     {
  123.         $this->fonction $fonction;
  124.         return $this;
  125.     }
  126.     public function getEvenement(): ?int
  127.     {
  128.         return $this->evenement;
  129.     }
  130.     public function setEvenement(string $evenement): self
  131.     {
  132.         $this->evenement $evenement;
  133.         return $this;
  134.     }
  135.     public function getUser(): ?int
  136.     {
  137.         return $this->user;
  138.     }
  139.     public function setUser(string $user): self
  140.     {
  141.         $this->user $user;
  142.         return $this;
  143.     }
  144.     public function getPay(): ?bool
  145.     {
  146.         return $this->pay;
  147.     }
  148.     
  149.     public function setPay(bool $pay): self
  150.     {
  151.         $this->pay $pay;
  152.     
  153.         return $this;
  154.     }
  155.     public function getMontant(): ?string
  156.     {
  157.         return $this->montant;
  158.     }
  159.     public function setMonatnt(string $montant): self
  160.     {
  161.         $this->montant $montant;
  162.         return $this;
  163.     }
  164. }