Commit 04397f21 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Financement : 2 nouvelles colonnes pour le type de financement

parent 57f7a4bf
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
@@ -18,6 +18,8 @@ class Financement
    protected $quotiteFinancement;
    protected $dateDebutFinancement;
    protected $dateFinFinancement;
    protected $codeTypeFinancement;
    protected $libelleTypeFinancement;

    private $sourceInsertDate;

@@ -100,4 +102,20 @@ class Financement
    {
        return $this->sourceInsertDate;
    }

    /**
     * @return mixed
     */
    public function getCodeTypeFinancement()
    {
        return $this->codeTypeFinancement;
    }

    /**
     * @return mixed
     */
    public function getLibelleTypeFinancement()
    {
        return $this->libelleTypeFinancement;
    }
}
+2 −0
Original line number Diff line number Diff line
@@ -12,6 +12,8 @@
        <field name="quotiteFinancement" type="integer" column="QUOTITE_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="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"/>
    </entity>