diff --git a/module/ImportData/src/V1/Entity/Db/Mapping/ImportData.V1.Entity.Db.These.dcm.xml b/module/ImportData/src/V1/Entity/Db/Mapping/ImportData.V1.Entity.Db.These.dcm.xml index a220fd48cc5e3292981c81c08fc02ee49e24cbeb..82337c0d84e6309f409aa2f6c9bb93873fc94cbe 100644 --- a/module/ImportData/src/V1/Entity/Db/Mapping/ImportData.V1.Entity.Db.These.dcm.xml +++ b/module/ImportData/src/V1/Entity/Db/Mapping/ImportData.V1.Entity.Db.These.dcm.xml @@ -2,7 +2,7 @@ <doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd"> - <entity name="ImportData\V1\Entity\Db\These" table="SYGAL_THESE"> + <entity name="ImportData\V1\Entity\Db\These" table="SYGAL_THESE_2"> <id name="id" type="string" column="ID"/> <field name="sourceId" type="string" column="SOURCE_ID" length="6" nullable="true"/> <field name="etatThese" type="string" column="ETA_THS" length="1" nullable="true"/> @@ -12,7 +12,6 @@ <field name="title" type="string" column="LIB_THS" length="800" nullable="true"/> <field name="codeLNG" type="string" column="COD_LNG" length="4" nullable="true"/> <field name="datePremiereInsc" type="datetime" column="DAT_DEB_THS" nullable="true"/> - <field name="anneeUnivPremiereInsc" type="integer" column="COD_ANU_PRM_IAE" nullable="true"/> <field name="uniteRechId" type="string" column="UNITE_RECH_ID" length="10" nullable="true"/> <field name="ecoleDoctId" type="string" column="ECOLE_DOCT_ID" length="4" nullable="true"/> <field name="libPaysCotut" type="string" column="LIB_PAY" length="40" nullable="true"/> diff --git a/module/ImportData/src/V1/Entity/Db/These.php b/module/ImportData/src/V1/Entity/Db/These.php index b9f5b153cd7e590a2cc04eeadf4b9af82c9018fb..9c9d064b022e6b8f9b0f15f763fac584494ecd24 100644 --- a/module/ImportData/src/V1/Entity/Db/These.php +++ b/module/ImportData/src/V1/Entity/Db/These.php @@ -18,7 +18,6 @@ class These protected $title; protected $codeLNG; protected $datePremiereInsc; - protected $anneeUnivPremiereInsc; protected $uniteRechId; protected $ecoleDoctId; protected $libPaysCotut; @@ -113,14 +112,6 @@ class These return $this->datePremiereInsc; } - /** - * @return mixed - */ - public function getAnneeUnivPremiereInsc() - { - return $this->anneeUnivPremiereInsc; - } - /** * @return mixed */