src/AppBundle/Entity/NotificacionLeida.php line 12
<?php
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="notificaciones_leidas")
* @ORM\Entity(repositoryClass="AppBundle\Repository\NotificacionLeidaRepository")
* @ORM\HasLifecycleCallbacks()
*/
class NotificacionLeida
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\ManyToOne(targetEntity="Notificacion")
* @ORM\JoinColumn(name="notificacion_id", referencedColumnName="id")
*/
protected $notificacion;
/**
* @ORM\ManyToOne(targetEntity="Usuario")
* @ORM\JoinColumn(name="usuario_id", referencedColumnName="id")
*/
protected $usuario;
/**
* @var \DateTime
*
* @ORM\Column(name="fecha_listado", type="datetime")
*/
protected $fechaListado;
/**
* @var \DateTime
*
* @ORM\Column(name="fecha_detalle", type="datetime")
*/
protected $fechaDetalle;
/**
* Constructor
*/
public function __construct()
{
}
public function getId()
{
return $this->id;
}
/**
* Get the value of notificacion
*/
public function getNotificacion()
{
return $this->notificacion;
}
/**
* Set the value of notificacion
*
* @return self
*/
public function setNotificacion($notificacion)
{
$this->notificacion = $notificacion;
return $this;
}
/**
* Get the value of usuario
*/
public function getUsuario()
{
return $this->usuario;
}
/**
* Set the value of usuario
*
* @return self
*/
public function setUsuario($usuario)
{
$this->usuario = $usuario;
return $this;
}
/**
* Get the value of fechaListado
*
* @return \DateTime
*/
public function getFechaListado()
{
return $this->fechaListado;
}
/**
* Set the value of fechaListado
*
* @param \DateTime $fechaListado
*
* @return self
*/
public function setFechaListado(\DateTime $fechaListado)
{
$this->fechaListado = $fechaListado;
return $this;
}
/**
* Get the value of fechaDetalle
*
* @return \DateTime
*/
public function getFechaDetalle()
{
return $this->fechaDetalle;
}
/**
* Set the value of fechaDetalle
*
* @param \DateTime $fechaDetalle
*
* @return self
*/
public function setFechaDetalle(\DateTime $fechaDetalle)
{
$this->fechaDetalle = $fechaDetalle;
return $this;
}
}