src/Entity/pays.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * pays
  6.  *
  7.  * @ORM\Table(name="pays")
  8.  * @ORM\Entity(repositoryClass="App\Repository\paysRepository")
  9.  */
  10. class pays
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="id", type="integer")
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="code", type="string", length=3, unique=true)
  24.      */
  25.     private $code;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="nom", type="string", length=255)
  30.      */
  31.     private $nom;
  32.     /**
  33.      * @var int
  34.      *
  35.      * @ORM\Column(name="etat", type="smallint")
  36.      */
  37.     private $etat;
  38.     /**
  39.      * Get id
  40.      *
  41.      * @return int
  42.      */
  43.     public function getId()
  44.     {
  45.         return $this->id;
  46.     }
  47.     /**
  48.      * Set code
  49.      *
  50.      * @param string $code
  51.      *
  52.      * @return pays
  53.      */
  54.     public function setCode($code)
  55.     {
  56.         $this->code $code;
  57.         return $this;
  58.     }
  59.     /**
  60.      * Get code
  61.      *
  62.      * @return string
  63.      */
  64.     public function getCode()
  65.     {
  66.         return $this->code;
  67.     }
  68.     /**
  69.      * Set nom
  70.      *
  71.      * @param string $nom
  72.      *
  73.      * @return pays
  74.      */
  75.     public function setNom($nom)
  76.     {
  77.         $this->nom $nom;
  78.         return $this;
  79.     }
  80.     /**
  81.      * Get nom
  82.      *
  83.      * @return string
  84.      */
  85.     public function getNom()
  86.     {
  87.         return $this->nom;
  88.     }
  89.     /**
  90.      * Set etat
  91.      *
  92.      * @param integer $etat
  93.      *
  94.      * @return pays
  95.      */
  96.     public function setEtat($etat)
  97.     {
  98.         $this->etat $etat;
  99.         return $this;
  100.     }
  101.     /**
  102.      * Get etat
  103.      *
  104.      * @return int
  105.      */
  106.     public function getEtat()
  107.     {
  108.         return $this->etat;
  109.     }
  110. }