vendor/webbamboo/spinners-common/src/Entity/Allcitiesmeta.php line 12

  1. <?php
  2. namespace Webbamboo\SpinnersCommon\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Allcitiesmeta
  6.  *
  7.  * @ORM\Table("Allcitiesmeta")
  8.  * @ORM\Entity
  9.  */
  10. class Allcitiesmeta
  11. {
  12.     /**
  13.      * @var integer
  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="metatitle", type="string", length=255, nullable=true)
  24.      */
  25.     private $metatitle;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="metadescription", type="string", length=255, nullable=true)
  30.      */
  31.     private $metadescription;
  32.     /**
  33.      * @var string
  34.      *
  35.      * @ORM\Column(name="content", type="text", nullable=true)
  36.      */
  37.     private $content;
  38.     /**
  39.      * @var integer
  40.      *
  41.      * @ORM\Column(name="countyid", type="integer")
  42.      */
  43.     private $countyid;
  44.     /**
  45.      * Get id
  46.      *
  47.      * @return integer
  48.      */
  49.     public function getId()
  50.     {
  51.         return $this->id;
  52.     }
  53.     /**
  54.      * Set metatitle
  55.      *
  56.      * @param string $metatitle
  57.      * @return Allcitiesmeta
  58.      */
  59.     public function setMetatitle($metatitle)
  60.     {
  61.         $this->metatitle $metatitle;
  62.         return $this;
  63.     }
  64.     /**
  65.      * Get metatitle
  66.      *
  67.      * @return string
  68.      */
  69.     public function getMetatitle()
  70.     {
  71.         return $this->metatitle;
  72.     }
  73.     /**
  74.      * Set metadescription
  75.      *
  76.      * @param string $metadescription
  77.      * @return Allcitiesmeta
  78.      */
  79.     public function setMetadescription($metadescription)
  80.     {
  81.         $this->metadescription $metadescription;
  82.         return $this;
  83.     }
  84.     /**
  85.      * Get metadescription
  86.      *
  87.      * @return string
  88.      */
  89.     public function getMetadescription()
  90.     {
  91.         return $this->metadescription;
  92.     }
  93.     /**
  94.      * Set content
  95.      *
  96.      * @param string $content
  97.      * @return Allcitiesmeta
  98.      */
  99.     public function setContent($content)
  100.     {
  101.         $this->content $content;
  102.         return $this;
  103.     }
  104.     /**
  105.      * Get content
  106.      *
  107.      * @return string
  108.      */
  109.     public function getContent()
  110.     {
  111.         return $this->content;
  112.     }
  113.     /**
  114.      * Set countyid
  115.      *
  116.      * @param integer $countyid
  117.      * @return Allcitiesmeta
  118.      */
  119.     public function setCountyid($countyid)
  120.     {
  121.         $this->countyid $countyid;
  122.         return $this;
  123.     }
  124.     /**
  125.      * Get countyid
  126.      *
  127.      * @return integer
  128.      */
  129.     public function getCountyid()
  130.     {
  131.         return $this->countyid;
  132.     }
  133. }