Advertisement
iifast

Club.php

Feb 17th, 2020
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.95 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. namespace ClubBundle\Entity;
  5. use Doctrine\ORM\Mapping as ORM;
  6.  
  7. /*
  8.  * C un Commentaire : Class Club
  9.  * package ClubBundle\Entity
  10.  */
  11.  
  12. /**
  13.  * Class Club
  14.  * @ORM\Entity
  15.  */
  16. class Club
  17. {
  18.  
  19.     /**
  20.     * @ORM\Column(type="integer")
  21.     * @ORM\ID
  22.     *@ORM\GeneratedValue(strategy="AUTO")
  23.     */
  24.     private $id ;
  25.  
  26.     /**
  27.      * @ORM\Column(type="string",length=255)
  28.      */
  29.     private $nom;
  30.     /**
  31.      * @ORM\Column(type="string",length=255)
  32.      */
  33.      private $description;
  34.     /**
  35.      * @ORM\Column(type="string",length=255)
  36.      */
  37.      private $adresse;
  38.     /**
  39.      * @ORM\Column(type="string",length=255)
  40.      */
  41.      private $domaine;
  42.  
  43.     /**
  44.      * @return mixed
  45.      */
  46.     public function getId()
  47.     {
  48.         return $this->id;
  49.     }
  50.  
  51.     /**
  52.      * @param mixed $id
  53.      */
  54.     public function setId($id)
  55.     {
  56.         $this->id = $id;
  57.     }
  58.  
  59.     /**
  60.      * @return mixed
  61.      */
  62.     public function getNom()
  63.     {
  64.         return $this->nom;
  65.     }
  66.  
  67.     /**
  68.      * @param mixed $nom
  69.      */
  70.     public function setNom($nom)
  71.     {
  72.         $this->nom = $nom;
  73.     }
  74.  
  75.     /**
  76.      * @return mixed
  77.      */
  78.     public function getDescription()
  79.     {
  80.         return $this->description;
  81.     }
  82.  
  83.     /**
  84.      * @param mixed $description
  85.      */
  86.     public function setDescription($description)
  87.     {
  88.         $this->description = $description;
  89.     }
  90.  
  91.     /**
  92.      * @return mixed
  93.      */
  94.     public function getAdresse()
  95.     {
  96.         return $this->adresse;
  97.     }
  98.  
  99.     /**
  100.      * @param mixed $adresse
  101.      */
  102.     public function setAdresse($adresse)
  103.     {
  104.         $this->adresse = $adresse;
  105.     }
  106.  
  107.     /**
  108.      * @return mixed
  109.      */
  110.     public function getDomaine()
  111.     {
  112.         return $this->domaine;
  113.     }
  114.  
  115.     /**
  116.      * @param mixed $domaine
  117.      */
  118.     public function setDomaine($domaine)
  119.     {
  120.         $this->domaine = $domaine;
  121.     }
  122.  
  123.  
  124.  
  125.  
  126. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement