src/Entity/Cities.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Cities
  6.  *
  7.  * @ORM\Table(name="cities")
  8.  * @ORM\Entity(repositoryClass="App\Repository\CitiesRepository")
  9.  */
  10. class Cities
  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 int
  22.      *
  23.      * @ORM\Column(name="region_id", type="integer")
  24.      */
  25.     private $regionId;
  26.     /**
  27.      * @var int
  28.      *
  29.      * @ORM\Column(name="country_id", type="integer")
  30.      */
  31.     private $countryId;
  32.     /**
  33.      * @var int
  34.      *
  35.      * @ORM\Column(name="latitude", type="decimal")
  36.      */
  37.     private $latitude;
  38.     /**
  39.      * @var int
  40.      *
  41.      * @ORM\Column(name="longitude", type="decimal")
  42.      */
  43.     private $longitude;
  44.     /**
  45.      * @var int
  46.      *
  47.      * @ORM\Column(name="name", type="string", length=255 )
  48.      */
  49.     private $city;
  50.     /**
  51.      * @var int
  52.      *
  53.      * @ORM\Column(name="province_id", type="integer")
  54.      */
  55.     private $provinceId;
  56.     /**
  57.      * @var string
  58.      *
  59.      * @ORM\Column(name="zipcode", type="text", nullable=true)
  60.      */
  61.     private $zipcode;
  62.     /**
  63.      * Get id
  64.      *
  65.      * @return int
  66.      */
  67.     public function getId()
  68.     {
  69.         return $this->id;
  70.     }
  71.     /**
  72.      * Set regionId
  73.      *
  74.      * @param integer $regionId
  75.      *
  76.      * @return Cities
  77.      */
  78.     public function setRegionId($regionId)
  79.     {
  80.         $this->regionId $regionId;
  81.         return $this;
  82.     }
  83.     /**
  84.      * Get regionId
  85.      *
  86.      * @return int
  87.      */
  88.     public function getRegionId()
  89.     {
  90.         return $this->regionId;
  91.     }
  92.     /**
  93.      * Set countryId
  94.      *
  95.      * @param integer $countryId
  96.      *
  97.      * @return Cities
  98.      */
  99.     public function setCountryId($countryId)
  100.     {
  101.         $this->countryId $countryId;
  102.         return $this;
  103.     }
  104.     /**
  105.      * Get countryId
  106.      *
  107.      * @return integer
  108.      */
  109.     public function getCountryId()
  110.     {
  111.         return $this->countryId;
  112.     }
  113.     /**
  114.      * Set latitude
  115.      *
  116.      * @param string $latitude
  117.      *
  118.      * @return Cities
  119.      */
  120.     public function setLatitude($latitude)
  121.     {
  122.         $this->latitude $latitude;
  123.         return $this;
  124.     }
  125.     /**
  126.      * Get latitude
  127.      *
  128.      * @return string
  129.      */
  130.     public function getLatitude()
  131.     {
  132.         return $this->latitude;
  133.     }
  134.     /**
  135.      * Set longitude
  136.      *
  137.      * @param string $longitude
  138.      *
  139.      * @return Cities
  140.      */
  141.     public function setLongitude($longitude)
  142.     {
  143.         $this->longitude $longitude;
  144.         return $this;
  145.     }
  146.     /**
  147.      * Get longitude
  148.      *
  149.      * @return string
  150.      */
  151.     public function getLongitude()
  152.     {
  153.         return $this->longitude;
  154.     }
  155.     /**
  156.      * Set city
  157.      *
  158.      * @param string $city
  159.      *
  160.      * @return Cities
  161.      */
  162.     public function setCity($city)
  163.     {
  164.         $this->city $city;
  165.         return $this;
  166.     }
  167.     /**
  168.      * Get city
  169.      *
  170.      * @return string
  171.      */
  172.     public function getCity()
  173.     {
  174.         return $this->city;
  175.     }
  176.     /**
  177.      * Set provinceId
  178.      *
  179.      * @param integer $provinceId
  180.      *
  181.      * @return Cities
  182.      */
  183.     public function setProvinceId($provinceId)
  184.     {
  185.         $this->provinceId $provinceId;
  186.         return $this;
  187.     }
  188.     /**
  189.      * Get provinceId
  190.      *
  191.      * @return integer
  192.      */
  193.     public function getProvinceId()
  194.     {
  195.         return $this->provinceId;
  196.     }
  197.     /**
  198.      * Set zipcode
  199.      *
  200.      * @param string $zipcode
  201.      *
  202.      * @return Cities
  203.      */
  204.     public function setZipcode($zipcode)
  205.     {
  206.         $this->zipcode $zipcode;
  207.         return $this;
  208.     }
  209.     /**
  210.      * Get zipcode
  211.      *
  212.      * @return string
  213.      */
  214.     public function getZipcode()
  215.     {
  216.         return $this->zipcode;
  217.     }
  218. }