<update id="batchUpdate" parameterType="map">
<foreach collection="paramsMap.entrySet()" item="value" index="key" separator="">
update t_table
set
ship_time = #{value}::timestamp
where code= #{key};
</foreach>
</update>
<update id="batchUpdate" parameterType="map">
<foreach collection="paramsMap.entrySet()" item="value" index="key" separator="">
update t_table
set
ship_time = #{value}::timestamp
where code= #{key};
</foreach>
</update>