<?php
namespace App\Entity\Parametrage;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* TODO : schema parametrage ou pas ?
* @ORM\Table(name="parametrage.parametre")
*/
class Parametre {
/**
* @ORM\Column(type="integer")
* @ORM\Id
* Pas d'auto-inc car IDs mappés à une enum
* @see App\Entity\Parametrage\EnumParametre
*/
private $id;
/**
* @ORM\Column(type="string", length=70)
*/
private $libelle;
/**
* @ORM\Column(type="string", length=10000, nullable=true)
*/
private $valeur;
/**
* Get id
*
* @return integer
*/
public function getId() {
return $this->id;
}
/**
* Set id
*
* @return integer
*/
public function setId($id) {
$this->id = $id;
return $this;
}
/**
* Set libelle
*
* @param string $libelle
*
* @return Parametre
*/
public function setLibelle($libelle) {
$this->libelle = $libelle;
return $this;
}
/**
* Get libelle
*
* @return string
*/
public function getLibelle() {
return $this->libelle;
}
/**
* Set libelle
*
* @param string $valeur
*
* @return Parametre
*/
public function setValeur($valeur) {
$this->valeur = $valeur;
return $this;
}
/**
* Get valeur
*
* @return string
*/
public function getValeur() {
return $this->valeur;
}
}