服务器之家

服务器之家 > 正文

mybatis注解如何实现对象批量更改

时间:2021-09-30 11:14     来源/作者:CoderYin

mybatis注解对象批量更改

一、介绍

当有多个对象需要进行更改时,批量修改对象集合List

二、代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@Update("<script>"
+ "<foreach collection='listUserAnswerRecord' item='item' open='' close=''  separator=';'> "
+ " update t_qb_record_201910"
+ " set answered = 0, progress = 1, answer_sheet = null, gmt_update = #{item.gmtUpdate}"
+ " <where>"
+ "<choose>"
+ "<when test='item.unionid !=null'> unionid=#{item.unionid}</when>"
+ "<otherwise> openid= #{item.openid} </otherwise>"
+ "</choose>"
+ " and goods_id = #{item.goodsId} and charpter_id = #{item.charpterId} and type = #{item.type}"
+ "</where>"
+ "</foreach>"
+ "</script>")
Integer deleteUserAnswerSheet(@Param("listUserAnswerRecord") List<UserAnswerRecordNew> listUserAnswerRecord);

mybatis 注解批量更新、插入

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//批量插入
    @Insert({
        "<script>",
        "insert into table(column1, column2) values ",
        "<foreach collection='userLists' item='item' index='index' separator=','>",
        "(#{item.column1}, #{item.column2} )",
        "</foreach>",
        "</script>"
    })
    public int insertUsers(@Param(value="userLists") List<User> userLists);
//批量更新
@Update({
        "<script>",
        "<foreach collection='userLists' item='item' index='index' separator=';'>",
        "update table b",
        "set b.column1= #{item.column1},b.column2= #{item.column2}  where b.column3= #{item.column3}",
        "</foreach>",
        "</script>"
    })
    public int updateUser(@Param(value="userLists") List<User> userLists);

collection:你传来的集合

item:里面的类

index:就是for循环的i

separator:间隔符

以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/CoderYin/article/details/93141862

标签:

相关文章

热门资讯

yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
返回顶部