src/AppBundle/Entity/NotificacionEstado.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="notificacion_estados")
  7.  * @ORM\Entity(repositoryClass="AppBundle\Repository\NotificacionEstadoRepository")
  8.  * @ORM\HasLifecycleCallbacks()
  9.  */
  10. class NotificacionEstado
  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.      * Constructor
  25.      */
  26.     public function __construct()
  27.     {
  28.     }
  29.     public function getId()
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getNombre()
  34.     {
  35.         return $this->nombre;
  36.     }
  37.     public function setNombre($nombre)
  38.     {
  39.         $this->nombre $nombre;
  40.         return $this;
  41.     }
  42. }