Skip to content
Snippets Groups Projects
Commit 04397f21 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Financement : 2 nouvelles colonnes pour le type de financement

parent 57f7a4bf
No related branches found
No related tags found
No related merge requests found
...@@ -18,6 +18,8 @@ class Financement ...@@ -18,6 +18,8 @@ class Financement
protected $quotiteFinancement; protected $quotiteFinancement;
protected $dateDebutFinancement; protected $dateDebutFinancement;
protected $dateFinFinancement; protected $dateFinFinancement;
protected $codeTypeFinancement;
protected $libelleTypeFinancement;
private $sourceInsertDate; private $sourceInsertDate;
...@@ -100,4 +102,20 @@ class Financement ...@@ -100,4 +102,20 @@ class Financement
{ {
return $this->sourceInsertDate; return $this->sourceInsertDate;
} }
/**
* @return mixed
*/
public function getCodeTypeFinancement()
{
return $this->codeTypeFinancement;
}
/**
* @return mixed
*/
public function getLibelleTypeFinancement()
{
return $this->libelleTypeFinancement;
}
} }
...@@ -12,6 +12,8 @@ ...@@ -12,6 +12,8 @@
<field name="quotiteFinancement" type="integer" column="QUOTITE_FINANCEMENT" nullable="true"/> <field name="quotiteFinancement" type="integer" column="QUOTITE_FINANCEMENT" nullable="true"/>
<field name="dateDebutFinancement" type="datetime" column="DATE_DEBUT_FINANCEMENT" nullable="true"/> <field name="dateDebutFinancement" type="datetime" column="DATE_DEBUT_FINANCEMENT" nullable="true"/>
<field name="dateFinFinancement" type="datetime" column="DATE_FIN_FINANCEMENT" nullable="true"/> <field name="dateFinFinancement" type="datetime" column="DATE_FIN_FINANCEMENT" nullable="true"/>
<field name="codeTypeFinancement" column="CODE_TYPE_FINANCEMENT" nullable="true"/>
<field name="libelleTypeFinancement" column="LIBELLE_TYPE_FINANCEMENT" nullable="true"/>
<field name="sourceInsertDate" type="datetime" column="SOURCE_INSERT_DATE"/> <field name="sourceInsertDate" type="datetime" column="SOURCE_INSERT_DATE"/>
</entity> </entity>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment