cocoa2003
Results
1
comments of
cocoa2003
方法名:insertListBatch(好像最新版本已经增加了这个方法了,新增了就忽略 :) ) 作用:批量插入,不需要主键,自己塞PrimaryKey进去,比如uuid 代码: /** * 批量插入,不需要主键,自己塞PrimaryKey进去,比如uuid * * @param recordList * @return */ @InsertProvider(type = SpecialProvider.class, method = "dynamicSQL") int insertListBatch(List recordList); 参考实现 /** * 批量插入 * *...