这期内容当中小编将会给大家带来有关mybatis中怎么利用注解对对象进行批量更改,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
mybatis注解对象批量更改
一、介绍
当有多个对象需要进行更改时,批量修改对象集合List
二、代码
@Update("<script>"
+"<foreachcollection='listUserAnswerRecord'item='item'open=''close=''separator=';'>"
+"updatet_qb_record_201910"
+"setanswered=0,progress=1,answer_sheet=null,gmt_update=#{item.gmtUpdate}"
+"<where>"
+"<choose>"
+"<whentest='item.unionid!=null'>unionid=#{item.unionid}</when>"
+"<otherwise>openid=#{item.openid}</otherwise>"
+"</choose>"
+"andgoods_id=#{item.goodsId}andcharpter_id=#{item.charpterId}andtype=#{item.type}"
+"</where>"
+"</foreach>"
+"</script>")
IntegerdeleteUserAnswerSheet(@Param("listUserAnswerRecord")List<UserAnswerRecordNew>listUserAnswerRecord);
mybatis 注解批量更新、插入
//批量插入
@Insert({
"<script>",
"insertintotable(column1,column2)values",
"<foreachcollection='userLists'item='item'index='index'separator=','>",
"(#{item.column1},#{item.column2})",
"</foreach>",
"</script>"
})
publicintinsertUsers(@Param(value="userLists")List<User>userLists);
//批量更新
@Update({
"<script>",
"<foreachcollection='userLists'item='item'index='index'separator=';'>",
"updatetableb",
"setb.column1=#{item.column1},b.column2=#{item.column2}whereb.column3=#{item.column3}",
"</foreach>",
"</script>"
})
publicintupdateUser(@Param(value="userLists")List<User>userLists);
collection
:你传来的集合
item
:里面的类
index
:就是for循环的i
separator
:间隔符
上述就是小编为大家分享的mybatis中怎么利用注解对对象进行批量更改了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注恰卡编程网行业资讯频道。