<?php
namespace App\Entity\Referentiel;
use Doctrine\ORM\Mapping as ORM;
use App\Entity\Commun\EstActifTrait;
/**
* @ORM\Entity(repositoryClass="App\Repository\Referentiel\JourSemaineRepository")
* @ORM\Table(name="efc.ref_jour_semaine")
*/
class JourSemaine
{
use EstActifTrait;
// <editor-fold defaultstate="collapsed" desc="Attributs privés">
/**
* Auto-inc car pas d'ENUM (possibilité IHM un jour ?)
*
* @ORM\Column(type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $id;
/**
* @ORM\Column(type="string", length=20)
*/
private $libelle;
// </editor-fold>
// <editor-fold desc="Accesseurs">
function getId()
{
return $this->id;
}
function setId($id)
{
$this->id = $id;
}
function getLibelle()
{
return $this->libelle;
}
function setLibelle($libelle)
{
$this->libelle = $libelle;
}
// </editor-fold>
// <editor-fold desc="Méthodes publiques">
/**
* Constructor
*/
public function __construct()
{ }
// </editor-fold>
}