You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.1 KiB
64 lines
1.1 KiB
<?php
|
|
|
|
namespace Database;
|
|
|
|
use Shared\Log;
|
|
|
|
class NotificationEntity
|
|
{
|
|
private $idNotif;
|
|
private $message;
|
|
private $date;
|
|
private $statut;
|
|
private $urgence;
|
|
private $idAthlete;
|
|
|
|
public function getIdNotif()
|
|
{
|
|
return $this->idNotif;
|
|
}
|
|
public function getMessage()
|
|
{
|
|
return $this->message;
|
|
}
|
|
public function getDate()
|
|
{
|
|
return $this->date;
|
|
}
|
|
public function getStatut()
|
|
{
|
|
return $this->statut;
|
|
}
|
|
public function getUrgence()
|
|
{
|
|
return $this->urgence;
|
|
}
|
|
public function getIdAthlete()
|
|
{
|
|
return $this->idAthlete;
|
|
}
|
|
public function setIdNotif($idNotif)
|
|
{
|
|
$this->idNotif = $idNotif;
|
|
}
|
|
public function setMessage($message)
|
|
{
|
|
$this->message = $message;
|
|
}
|
|
public function setDate($date)
|
|
{
|
|
$this->date = $date;
|
|
}
|
|
public function setStatut($statut)
|
|
{
|
|
$this->statut = $statut;
|
|
}
|
|
public function setUrgence($urgence)
|
|
{
|
|
$this->urgence = $urgence;
|
|
}
|
|
public function setIdAthlete($idAthlete)
|
|
{
|
|
$this->idAthlete = $idAthlete;
|
|
}
|
|
} |