src/Entity/Blog.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Blog
  6.  *
  7.  * @ORM\Table(name="blog")
  8.  * @ORM\Entity(repositoryClass="App\Repository\BlogRepository")
  9.  */
  10. class Blog
  11. {
  12.     /**
  13.      * @var integer
  14.      *
  15.      * @ORM\Column(name="blog_id", type="integer", nullable=false)
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $blogId;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="nombre", type="string", length=255, nullable=false)
  24.      */
  25.     private $nombre;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="descripcion", type="text", nullable=false)
  30.      */
  31.     private $descripcion;
  32.     /**
  33.      * @var string
  34.      *
  35.      * @ORM\Column(name="titulo", type="string", length=255, nullable=false)
  36.      */
  37.     private $titulo;
  38.     /**
  39.      * @var string
  40.      *
  41.      * @ORM\Column(name="descripcion_seo", type="string", length=255, nullable=false)
  42.      */
  43.     private $descripcionSeo;
  44.     /**
  45.      * @var string
  46.      *
  47.      * @ORM\Column(name="tags", type="text", nullable=false)
  48.      */
  49.     private $tags;
  50.     /**
  51.      * @var string
  52.      *
  53.      * @ORM\Column(name="imagen", type="string", length=255, nullable=false)
  54.      */
  55.     private $imagen;
  56.     /**
  57.      * @var boolean
  58.      *
  59.      * @ORM\Column(name="estado", type="boolean", nullable=false)
  60.      */
  61.     private $estado;
  62.     /**
  63.      * @var string
  64.      *
  65.      * @ORM\Column(name="url", type="string", length=255, nullable=false)
  66.      */
  67.     private $url;
  68.     /**
  69.      * @var \DateTime
  70.      *
  71.      * @ORM\Column(name="created_at", type="datetime", nullable=false)
  72.      */
  73.     private $createdAt;
  74.     /**
  75.      * @var \DateTime
  76.      *
  77.      * @ORM\Column(name="updated_at", type="datetime", nullable=false)
  78.      */
  79.     private $updatedAt;
  80.     /**
  81.      * @var Empresa
  82.      *
  83.      * @ORM\ManyToOne(targetEntity="App\Entity\Empresa")
  84.      * @ORM\JoinColumns({
  85.      *   @ORM\JoinColumn(name="empresa_id", referencedColumnName="empresa_id")
  86.      * })
  87.      */
  88.     private $empresa;
  89.     /**
  90.      * @var Usuario
  91.      *
  92.      * @ORM\ManyToOne(targetEntity="App\Entity\Usuario")
  93.      * @ORM\JoinColumns({
  94.      *   @ORM\JoinColumn(name="autor_id", referencedColumnName="usuario_id")
  95.      * })
  96.      */
  97.     private $autor;
  98.     /**
  99.      * Get blogId
  100.      *
  101.      * @return integer
  102.      */
  103.     public function getBlogId()
  104.     {
  105.         return $this->blogId;
  106.     }
  107.     public function getTitulo()
  108.     {
  109.         return $this->titulo;
  110.     }
  111.     public function setTitulo($titulo)
  112.     {
  113.         $this->titulo $titulo;
  114.     }
  115.     public function getDescripcion()
  116.     {
  117.         return $this->descripcion;
  118.     }
  119.     public function setDescripcion($descripcion)
  120.     {
  121.         $this->descripcion $descripcion;
  122.     }
  123.     public function getEstado()
  124.     {
  125.         return $this->estado;
  126.     }
  127.     public function setEstado($estado)
  128.     {
  129.         $this->estado $estado;
  130.     }
  131.     /**
  132.      * @return \DateTime
  133.      */
  134.     public function getCreatedAt()
  135.     {
  136.         return $this->createdAt;
  137.     }
  138.     public function setCreatedAt($createdAt)
  139.     {
  140.         $this->createdAt $createdAt;
  141.     }
  142.     /**
  143.      * @return \DateTime
  144.      */
  145.     public function getUpdatedAt()
  146.     {
  147.         return $this->updatedAt;
  148.     }
  149.     public function setUpdatedAt($updatedAt)
  150.     {
  151.         $this->updatedAt $updatedAt;
  152.     }
  153.     /**
  154.      * @return Empresa
  155.      */
  156.     public function getEmpresa()
  157.     {
  158.         return $this->empresa;
  159.     }
  160.     public function setEmpresa($empresa)
  161.     {
  162.         $this->empresa $empresa;
  163.     }
  164.     /**
  165.      * @return Usuario
  166.      */
  167.     public function getAutor()
  168.     {
  169.         return $this->autor;
  170.     }
  171.     public function setAutor($autor)
  172.     {
  173.         $this->autor $autor;
  174.     }
  175.     public function getUrl()
  176.     {
  177.         return $this->url;
  178.     }
  179.     public function setUrl($url)
  180.     {
  181.         $this->url $url;
  182.     }
  183.     public function getNombre()
  184.     {
  185.         return $this->nombre;
  186.     }
  187.     public function setNombre($nombre)
  188.     {
  189.         $this->nombre $nombre;
  190.     }
  191.     public function getDescripcionSeo()
  192.     {
  193.         return $this->descripcionSeo;
  194.     }
  195.     public function setDescripcionSeo($descripcionSeo)
  196.     {
  197.         $this->descripcionSeo $descripcionSeo;
  198.     }
  199.     public function getTags()
  200.     {
  201.         return $this->tags;
  202.     }
  203.     public function setTags($tags)
  204.     {
  205.         $this->tags $tags;
  206.     }
  207.     public function getImagen()
  208.     {
  209.         return $this->imagen;
  210.     }
  211.     public function setImagen($imagen)
  212.     {
  213.         $this->imagen $imagen;
  214.     }
  215. }