src/Entity/Regions.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Regions
  6.  *
  7.  * @ORM\Table(name="regions")
  8.  * @ORM\Entity(repositoryClass="App\Repository\RegionsRepository")
  9.  */
  10. class Regions
  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.     /**
  22.      * @var string
  23.      *
  24.      * @ORM\Column(name="code", type="string", length=10)
  25.      */
  26.     private $code;
  27.     /**
  28.      * @var string
  29.      *
  30.      * @ORM\Column(name="name", type="string", length=255)
  31.      */
  32.     private $region;
  33.     /**
  34.      * @var int
  35.      *
  36.      * @ORM\Column(name="country_id", type="integer", length=5)
  37.      */
  38.     private $countryId;
  39.     /**
  40.      * Get id
  41.      *
  42.      * @return int
  43.      */
  44.     public function getId()
  45.     {
  46.         return $this->id;
  47.     }
  48.     /**
  49.      * Set code
  50.      *
  51.      * @param string $code
  52.      *
  53.      * @return Regions
  54.      */
  55.     public function setCode($code)
  56.     {
  57.         $this->code $code;
  58.         return $this;
  59.     }
  60.     /**
  61.      * Get code
  62.      *
  63.      * @return string
  64.      */
  65.     public function getCode()
  66.     {
  67.         return $this->code;
  68.     }
  69.     /**
  70.      * Set region
  71.      *
  72.      * @param string $region
  73.      *
  74.      * @return Regions
  75.      */
  76.     public function setRegion($region)
  77.     {
  78.         $this->region $region;
  79.         return $this;
  80.     }
  81.     /**
  82.      * Get region
  83.      *
  84.      * @return string
  85.      */
  86.     public function getRegion()
  87.     {
  88.         return $this->region;
  89.     }
  90.     /**
  91.      * Set countryId
  92.      *
  93.      * @param integer $countryId
  94.      *
  95.      * @return Regions
  96.      */
  97.     public function setCountryId($countryId)
  98.     {
  99.         $this->countryId $countryId;
  100.         return $this;
  101.     }
  102.     /**
  103.      * Get countryId
  104.      *
  105.      * @return integer
  106.      */
  107.     public function getCountryId()
  108.     {
  109.         return $this->countryId;
  110.     }
  111. }