src/AppBundle/Entity/NotificacionLeida.php line 12

  1. <?php
  2. namespace AppBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Table(name="notificaciones_leidas")
  6.  * @ORM\Entity(repositoryClass="AppBundle\Repository\NotificacionLeidaRepository")
  7.  * @ORM\HasLifecycleCallbacks()
  8.  */
  9. class NotificacionLeida
  10. {
  11.     /**
  12.      * @ORM\Id
  13.      * @ORM\Column(type="integer")
  14.      * @ORM\GeneratedValue(strategy="AUTO")
  15.      */
  16.     protected $id;
  17.     /**
  18.      * @ORM\ManyToOne(targetEntity="Notificacion")
  19.      * @ORM\JoinColumn(name="notificacion_id", referencedColumnName="id")
  20.      */
  21.     protected $notificacion;
  22.     /**
  23.      * @ORM\ManyToOne(targetEntity="Usuario")
  24.      * @ORM\JoinColumn(name="usuario_id", referencedColumnName="id")
  25.      */
  26.     protected $usuario;
  27.     /**
  28.      * @var \DateTime
  29.      *
  30.      * @ORM\Column(name="fecha_listado", type="datetime")
  31.      */
  32.     protected $fechaListado;
  33.     /**
  34.      * @var \DateTime
  35.      *
  36.      * @ORM\Column(name="fecha_detalle", type="datetime")
  37.      */
  38.     protected $fechaDetalle;
  39.     /**
  40.      * Constructor
  41.      */
  42.     public function __construct()
  43.     {
  44.     }
  45.     public function getId()
  46.     {
  47.         return $this->id;
  48.     }
  49.     /**
  50.      * Get the value of notificacion
  51.      */
  52.     public function getNotificacion()
  53.     {
  54.         return $this->notificacion;
  55.     }
  56.     /**
  57.      * Set the value of notificacion
  58.      *
  59.      * @return  self
  60.      */
  61.     public function setNotificacion($notificacion)
  62.     {
  63.         $this->notificacion $notificacion;
  64.         return $this;
  65.     }
  66.     /**
  67.      * Get the value of usuario
  68.      */
  69.     public function getUsuario()
  70.     {
  71.         return $this->usuario;
  72.     }
  73.     /**
  74.      * Set the value of usuario
  75.      *
  76.      * @return  self
  77.      */
  78.     public function setUsuario($usuario)
  79.     {
  80.         $this->usuario $usuario;
  81.         return $this;
  82.     }
  83.     /**
  84.      * Get the value of fechaListado
  85.      *
  86.      * @return  \DateTime
  87.      */
  88.     public function getFechaListado()
  89.     {
  90.         return $this->fechaListado;
  91.     }
  92.     /**
  93.      * Set the value of fechaListado
  94.      *
  95.      * @param  \DateTime  $fechaListado
  96.      *
  97.      * @return  self
  98.      */
  99.     public function setFechaListado(\DateTime $fechaListado)
  100.     {
  101.         $this->fechaListado $fechaListado;
  102.         return $this;
  103.     }
  104.     /**
  105.      * Get the value of fechaDetalle
  106.      *
  107.      * @return  \DateTime
  108.      */
  109.     public function getFechaDetalle()
  110.     {
  111.         return $this->fechaDetalle;
  112.     }
  113.     /**
  114.      * Set the value of fechaDetalle
  115.      *
  116.      * @param  \DateTime  $fechaDetalle
  117.      *
  118.      * @return  self
  119.      */
  120.     public function setFechaDetalle(\DateTime $fechaDetalle)
  121.     {
  122.         $this->fechaDetalle $fechaDetalle;
  123.         return $this;
  124.     }
  125. }