T - 实体类类型public interface ListMapper<T>
| Modifier and Type | Method and Description |
|---|---|
int |
insertList(List<? extends T> entityList)
批量保存实体,需要数据库支持批量插入的语法
|
@Lang(value=io.mybatis.provider.Caching.class) @InsertProvider(type=ListProvider.class, method="insertList") int insertList(@Param(value="entityList") List<? extends T> entityList)
entityList - 实体列表Copyright © 2022. All rights reserved.