src/Entity/City.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CityRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=CityRepository::class)
  7.  */
  8. class City
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $name;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private $state;
  24.     /**
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.     private $country;
  28.     /**
  29.      * @ORM\Column(type="integer")
  30.      */
  31.     private $access;
  32.     /**
  33.      * @ORM\Column(type="datetime")
  34.      */
  35.     private $accessed;
  36.     /**
  37.      * @ORM\Column(type="datetime")
  38.      */
  39.     private $created;
  40.     /**
  41.      * @ORM\Column(type="datetime")
  42.      */
  43.     private $updated;
  44.     /**
  45.      * @ORM\Column(type="boolean")
  46.      */
  47.     private $status;
  48.     public function getId(): ?int
  49.     {
  50.         return $this->id;
  51.     }
  52.     public function getName(): ?string
  53.     {
  54.         return $this->name;
  55.     }
  56.     public function setName(string $name): self
  57.     {
  58.         $this->name $name;
  59.         return $this;
  60.     }
  61.     public function getState(): ?string
  62.     {
  63.         return $this->state;
  64.     }
  65.     public function setState(string $state): self
  66.     {
  67.         $this->state $state;
  68.         return $this;
  69.     }
  70.     public function getCountry(): ?string
  71.     {
  72.         return $this->country;
  73.     }
  74.     public function setCountry(string $country): self
  75.     {
  76.         $this->country $country;
  77.         return $this;
  78.     }
  79.     public function getAccess(): ?int
  80.     {
  81.         return $this->access;
  82.     }
  83.     public function setAccess(int $access): self
  84.     {
  85.         $this->access $access;
  86.         return $this;
  87.     }
  88.     public function getAccessed(): ?\DateTimeInterface
  89.     {
  90.         return $this->accessed;
  91.     }
  92.     public function setAccessed(\DateTimeInterface $accessed): self
  93.     {
  94.         $this->accessed $accessed;
  95.         return $this;
  96.     }
  97.     public function getCreated(): ?\DateTimeInterface
  98.     {
  99.         return $this->created;
  100.     }
  101.     public function setCreated(\DateTimeInterface $created): self
  102.     {
  103.         $this->created $created;
  104.         return $this;
  105.     }
  106.     public function getUpdated(): ?\DateTimeInterface
  107.     {
  108.         return $this->updated;
  109.     }
  110.     public function setUpdated(\DateTimeInterface $updated): self
  111.     {
  112.         $this->updated $updated;
  113.         return $this;
  114.     }
  115.     public function isStatus(): ?bool
  116.     {
  117.         return $this->status;
  118.     }
  119.     public function setStatus(bool $status): self
  120.     {
  121.         $this->status $status;
  122.         return $this;
  123.     }
  124. }