src/Entity/SeoOnPage.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * SeoOnPage
  6.  *
  7.  * @ORM\Table(name="seo_on_page")
  8.  * @ORM\Entity(repositoryClass="App\Repository\SeoOnPageRepository")
  9.  */
  10. class SeoOnPage
  11. {
  12.     /**
  13.      * @var integer
  14.      *
  15.      * @ORM\Column(name="pagina_id", type="integer", nullable=false)
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $paginaId;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="titulo", type="string", length=60, nullable=true)
  24.      */
  25.     private $titulo;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="descripcion", type="string", length=160, nullable=true)
  30.      */
  31.     private $descripcion;
  32.     /**
  33.      * @var string
  34.      *
  35.      * @ORM\Column(name="url", type="string", length=255, nullable=true)
  36.      */
  37.     private $url;
  38.     /**
  39.      * @var string
  40.      *
  41.      * @ORM\Column(name="tags", type="text", nullable=false)
  42.      */
  43.     private $tags;
  44.     /**
  45.      * @var Empresa
  46.      *
  47.      * @ORM\ManyToOne(targetEntity="App\Entity\Empresa")
  48.      * @ORM\JoinColumns({
  49.      *   @ORM\JoinColumn(name="empresa_id", referencedColumnName="empresa_id")
  50.      * })
  51.      */
  52.     private $empresa;
  53.     /**
  54.      * Get paginaId
  55.      *
  56.      * @return integer
  57.      */
  58.     public function getPaginaId()
  59.     {
  60.         return $this->paginaId;
  61.     }
  62.     /**
  63.      * Set titulo
  64.      *
  65.      * @param string $titulo
  66.      * @return SeoOnPage
  67.      */
  68.     public function setTitulo($titulo)
  69.     {
  70.         $this->titulo $titulo;
  71.         return $this;
  72.     }
  73.     /**
  74.      * Get titulo
  75.      *
  76.      * @return string
  77.      */
  78.     public function getTitulo()
  79.     {
  80.         return $this->titulo;
  81.     }
  82.     /**
  83.      * Set descripcion
  84.      *
  85.      * @param string $descripcion
  86.      * @return SeoOnPage
  87.      */
  88.     public function setDescripcion($descripcion)
  89.     {
  90.         $this->descripcion $descripcion;
  91.         return $this;
  92.     }
  93.     /**
  94.      * Get descripcion
  95.      *
  96.      * @return string
  97.      */
  98.     public function getDescripcion()
  99.     {
  100.         return $this->descripcion;
  101.     }
  102.     /**
  103.      * Set url
  104.      *
  105.      * @param string $url
  106.      * @return SeoOnPage
  107.      */
  108.     public function setUrl($url)
  109.     {
  110.         $this->url $url;
  111.         return $this;
  112.     }
  113.     /**
  114.      * Get url
  115.      *
  116.      * @return string
  117.      */
  118.     public function getUrl()
  119.     {
  120.         return $this->url;
  121.     }
  122.     /**
  123.      * Set tags
  124.      *
  125.      * @param boolean $tags
  126.      * @return SeoOnPage
  127.      */
  128.     public function setTags($tags)
  129.     {
  130.         $this->tags $tags;
  131.         return $this;
  132.     }
  133.     /**
  134.      * Get tags
  135.      *
  136.      * @return boolean
  137.      */
  138.     public function getTags()
  139.     {
  140.         return $this->tags;
  141.     }
  142.     /**
  143.      * @return Empresa
  144.      */
  145.     public function getEmpresa()
  146.     {
  147.         return $this->empresa;
  148.     }
  149.     public function setEmpresa($empresa)
  150.     {
  151.         $this->empresa $empresa;
  152.     }
  153. }