【批量】单表批量更新语句
xml
<update id="updateMaterialQrList" parameterType="java.util.List"> <foreach collection="materialQrList" item="p" index="index" open="" close="" separator=";"> update ${materialQrTable} <set> material_doc = #{p.materialDoc}, material_docYear = #{p.materialDocYear}, storage_type = #{p.storageType} </set> where qr_code = #{p.qrCode} </foreach> </update>
mapper.java
serviceImpl.java
有的内容是自己平日积累的与工作上遇到的,有的是摘抄其他博主的精彩好文(会附上作者),愿大家共同成长。