这篇文章主要介绍了mybatis注解实现对象批量更改的方式,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
mybatis注解对象批量更改
一、介绍
当有多个对象需要进行更改时,批量修改对象集合List
二、代码
@Update("") Integer deleteUserAnswerSheet(@Param("listUserAnswerRecord") List listUserAnswerRecord);
mybatis 注解批量更新、插入
//批量插入 @Insert({ "" }) public int insertUsers(@Param(value="userLists") List userLists); //批量更新 @Update({ "" }) public int updateUser(@Param(value="userLists") List <strong style="color:transparent">来源gaodai#ma#com搞@@代~&码网</strong>userLists);
collection
:你传来的集合
item
:里面的类
index
:就是for循环的i
separator
:间隔符
以上为个人经验,希望能给大家一个参考,也希望大家多多支持gaodaima搞代码网。
以上就是mybatis注解如何实现对象批量更改的详细内容,更多请关注gaodaima搞代码网其它相关文章!