|
@@ -41,7 +41,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="villageId" column="village_id"/>
|
|
|
<result property="village" column="village"/>
|
|
|
<result property="isLocal" column="is_local"/>
|
|
|
-
|
|
|
+ <result property="source" column="source"/>
|
|
|
|
|
|
</resultMap>
|
|
|
|
|
@@ -79,7 +79,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
village_towns,
|
|
|
village_id,
|
|
|
village,
|
|
|
- is_local,create_time,update_time)
|
|
|
+ is_local,source,create_time,update_time)
|
|
|
values
|
|
|
<foreach item="thirdPartInfo" index="index" collection="thirdPartInfoList" separator=",">
|
|
|
(#{thirdPartInfo.cremationCertificate},
|
|
@@ -115,6 +115,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
#{thirdPartInfo.villageId},
|
|
|
#{thirdPartInfo.village},
|
|
|
#{thirdPartInfo.isLocal},
|
|
|
+ #{thirdPartInfo.source},
|
|
|
sysdate(),sysdate())
|
|
|
</foreach>
|
|
|
</insert>
|
|
@@ -122,7 +123,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<select id="queryList" resultMap="ThirdPartInfoResult">
|
|
|
select id, cremation_certificate, cremation_time, user_name, id_card, age, gender, nation, township, village_group,
|
|
|
home_phone, is_deposit, is_cold_storage,cause_of_death,status,
|
|
|
- is_hmbz,sjgm,jzdx,remarks,is_local_account,is_local,create_time
|
|
|
+ is_hmbz,sjgm,jzdx,remarks,is_local_account,is_local,create_time,source
|
|
|
from third_part_info
|
|
|
<where>
|
|
|
is_del = 'N'
|