Skip to content
Snippets Groups Projects
Commit ab62c71c authored by NF17 Etudiant's avatar NF17 Etudiant
Browse files

Merge branch 'master' of gitlab.utc.fr:nf17-camp-p14/clivi

parents d103d1ab 376736b7
No related branches found
No related tags found
No related merge requests found
......@@ -14,14 +14,35 @@ class Animal extends Objet
protected $taille;
protected $code;
public $_specialFields = array(
"id" => array(
"i" => 1
),
"nom" => array(
"i" => 2
),
"genre" => array(
"i" => 5
),
"poids" => array(
"i" => 6
),
"date_naissance" => array(
"i" => 8
),
"date_deces" => array(
"i" => 9
),
"sterile" => array(
"t" => "BoolField"
"t" => "BoolField",
"i" => 7
),
"client" => array(
"t" => "ForeignField"
"t" => "ForeignField",
"i" => 3
),
"race" => array(
"t" => "ForeignField"
"t" => "ForeignField",
"i" => 4
));
public function id()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment