Subversion Repositories Applications.gtt

Rev

Rev 64 | Rev 92 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 64 Rev 82
Line 51... Line 51...
51
	const GUS_ID_MAX = 'UTILISATEURSTATUT_ID_MAX';
51
	const GUS_ID_MAX = 'UTILISATEURSTATUT_ID_MAX';
52
	const GUS_LIBELLE = 'UTILISATEURSTATUT_LIBELLE';
52
	const GUS_LIBELLE = 'UTILISATEURSTATUT_LIBELLE';
Line 53... Line 53...
53
 
53
 
54
	/*** Attributs : */
54
	/*** Attributs : */
55
	private $id_utilisateur_statut;
55
	private $id_utilisateur_statut;
-
 
56
	private $libelle;
Line 56... Line 57...
56
	private $libelle;
57
	private $mark_recapitulatif;
Line 57... Line 58...
57
 
58
 
58
	/*** Aggregations : */
59
	/*** Aggregations : */
59
 
60
 
60
	/*** Constructeur : */
61
	/*** Constructeur : */
61
	public function __construct($cmd = null, $parametres = null)
62
	public function __construct($cmd = null, $parametres = null)
62
	{
63
	{
63
		$this->dao_table_nom = 'gestion_utilisateur_statut';
64
		$this->dao_table_nom = 'gestion_utilisateur_statut';
-
 
65
		$this->dao_correspondance = array(
Line 64... Line 66...
64
		$this->dao_correspondance = array(
66
			'gus_id_utilisateur_statut'	=> 'id_utilisateur_statut',
65
			'gus_id_utilisateur_statut'	=> 'id_utilisateur_statut',
67
			'gus_libelle'	=> 'libelle',
66
			'gus_libelle'	=> 'libelle');
68
			'gus_mark_recapitulatif'	=> 'mark_recapitulatif');
67
 
69
 
Line 89... Line 91...
89
	}
91
	}
90
	public function setLibelle( $l )
92
	public function setLibelle( $l )
91
	{
93
	{
92
		$this->libelle = $l;
94
		$this->libelle = $l;
93
	}
95
	}
-
 
96
 
-
 
97
	// Mark Recapitulatif
-
 
98
	public function getMarkRecapitulatif()
-
 
99
	{
-
 
100
		return $this->mark_recapitulatif;
-
 
101
	}
-
 
102
	public function setMarkRecapitulatif( $mr )
-
 
103
	{
-
 
104
		$this->mark_recapitulatif = $mr;
-
 
105
	}
Line 94... Line 106...
94
 
106
 
Line 95... Line 107...
95
	/*** Méthodes : */
107
	/*** Méthodes : */
96
 
108