src/Entity/Highlighted.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Highlighted
  6.  *
  7.  * @ORM\Table(name="highlighted")
  8.  * @ORM\Entity(repositoryClass="App\Repository\HighlightedRepository")
  9.  */
  10. class Highlighted
  11. {
  12.     /**
  13.      * @var integer
  14.      *
  15.      * @ORM\Column(name="highlighted_id", type="integer", nullable=false)
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $highlightedId;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="titulo", type="string", length=255, nullable=false)
  24.      */
  25.     private $titulo;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="descripcion", type="text", nullable=false)
  30.      */
  31.     private $descripcion;
  32.     /**
  33.      * @var Empresa
  34.      *
  35.      * @ORM\ManyToOne(targetEntity="App\Entity\Empresa")
  36.      * @ORM\JoinColumns({
  37.      *   @ORM\JoinColumn(name="empresa_id", referencedColumnName="empresa_id")
  38.      * })
  39.      */
  40.     private $empresa;
  41.     /**
  42.      * Get highlightedId
  43.      *
  44.      * @return integer
  45.      */
  46.     public function getHighlightedId()
  47.     {
  48.         return $this->highlightedId;
  49.     }
  50.     public function getTitulo()
  51.     {
  52.         return $this->titulo;
  53.     }
  54.     public function setTitulo($titulo)
  55.     {
  56.         $this->titulo $titulo;
  57.     }
  58.     public function getDescripcion()
  59.     {
  60.         return $this->descripcion;
  61.     }
  62.     public function setDescripcion($descripcion)
  63.     {
  64.         $this->descripcion $descripcion;
  65.     }
  66.     /**
  67.      * @return Empresa
  68.      */
  69.     public function getEmpresa()
  70.     {
  71.         return $this->empresa;
  72.     }
  73.     public function setEmpresa($empresa)
  74.     {
  75.         $this->empresa $empresa;
  76.     }
  77. }