src/AppBundle/Entity/NotificacionEstado.php line 13
<?php
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
/**
* @ORM\Table(name="notificacion_estados")
* @ORM\Entity(repositoryClass="AppBundle\Repository\NotificacionEstadoRepository")
* @ORM\HasLifecycleCallbacks()
*/
class NotificacionEstado
{
/**
* @ORM\Column(type="integer")
* @ORM\Id
*/
protected $id;
/**
* @var string
* @Assert\NotBlank()
* @ORM\Column(name="nombre", type="string")
*/
protected $nombre;
/**
* Constructor
*/
public function __construct()
{
}
public function getId()
{
return $this->id;
}
public function getNombre()
{
return $this->nombre;
}
public function setNombre($nombre)
{
$this->nombre = $nombre;
return $this;
}
}