src/AppBundle/Entity/NotificacionAsunto.php line 13

  1. <?php
  2. namespace AppBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Symfony\Component\Validator\Constraints as Assert;
  5. /**
  6.  * @ORM\Table(name="notificaciones_asuntos")
  7.  * @ORM\Entity(repositoryClass="AppBundle\Repository\NotificacionAsuntoRepository")
  8.  * @ORM\HasLifecycleCallbacks()
  9.  */
  10. class NotificacionAsunto
  11. {
  12.     /**
  13.      * @ORM\Column(type="integer")
  14.      * @ORM\Id
  15.      */
  16.     protected $id;
  17.     /**
  18.      * @var string
  19.      * @Assert\NotBlank()
  20.      * @ORM\Column(name="nombre", type="string")
  21.      */
  22.     protected $nombre;
  23.     /**
  24.      * @var string
  25.      * @Assert\NotBlank()
  26.      * @ORM\Column(name="color", type="string")
  27.      */
  28.     protected $color;
  29.     /**
  30.      * Constructor
  31.      */
  32.     public function __construct()
  33.     {
  34.     }
  35.     public function getId()
  36.     {
  37.         return $this->id;
  38.     }
  39.     public function getNombre()
  40.     {
  41.         return $this->nombre;
  42.     }
  43.     public function setNombre($nombre)
  44.     {
  45.         $this->nombre $nombre;
  46.         return $this;
  47.     }
  48.     public function getColor()
  49.     {
  50.         return $this->color;
  51.     }
  52.     public function setColor($color)
  53.     {
  54.         $this->color $color;
  55.         return $this;
  56.     }
  57. }