|
@@ -31,14 +31,16 @@
|
|
|
|
|
|
</insert>
|
|
|
<update id="batchUpdate">
|
|
|
- update PPW_EMAIL.email_fund_asset
|
|
|
- <set>
|
|
|
- fund_id = #{itemDo.fundId},
|
|
|
- exception_status = #{itemDo.exceptionStatus},
|
|
|
- updatetime=#{itemDo.updateTime}
|
|
|
- </set>
|
|
|
- where isvalid = 1
|
|
|
- and id = #{itemDo.id}
|
|
|
+ <foreach collection="itemDoList" item="itemDo" index="index" open="" close="" separator=";">
|
|
|
+ update PPW_EMAIL.email_fund_asset
|
|
|
+ <set>
|
|
|
+ fund_id = #{itemDo.fundId},
|
|
|
+ exception_status = #{itemDo.exceptionStatus},
|
|
|
+ updatetime=#{itemDo.updateTime}
|
|
|
+ </set>
|
|
|
+ where isvalid = 1
|
|
|
+ and id = #{itemDo.id}
|
|
|
+ </foreach>
|
|
|
</update>
|
|
|
<select id="searchAssetDetail" resultMap="BaseResultMap"
|
|
|
parameterType="com.simuwang.base.pojo.dto.query.ParseDetailPageQuery">
|