mapper层:
Integer batchAdd(@Param("list")List<UserEntity> userEntity);
xml:
<insert id="batchAdd" parameterType="java.util.List">
INSERT INTO 表名(name, age, gender, psw, seq) values
<foreach collection="list" item="item" index="index" separator=",">
( #{item.name},#{item.age},#{item.gender},#{item.psw},#{item.seq})
</foreach>
</insert>
mapper层:
Integer batchDelete(@Param("idList") List<Integer> idList);
xml:
<delete id="batchDelete" parameterType="java.util.List">
DELETE FROM 表名 where id in
<foreach collection="idList" item="item" separator="," open="(" close=")">
#{item}
</foreach>
</delete>
mapper层:
Integer batchUpdateOneVariable(@Param("user") UserEntity user,@Param("idList") List idList);
xml:
<update id="batchUpdateOneVariable" >
UPDATE 表名 set psw=#{user.psw}
<where>
id in (
<if test="idList.size()!=0">
<foreach collection="idList" separator="," item="item" index="index">
#{item}
</foreach>
</if>
)
</where>
</update>
mapper层:
List<UserEntity> batchSelect2(UserEntity2 userEntity2);
xml:
<select id="batchSelect2" parameterType="cn.com.exercise.batch.entity.UserEntity2" resultMap="user">
select * from 表名
<where>
id in
<foreach collection="ids" separator="," open="(" close=")" index="index" item="item">
#{item}
</foreach>
</where>
</select>
原文地址:https://blog.csdn.net/RHHcainiao/article/details/135949955
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_64275.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!