接口 CrudMapper<T>
- 类型参数:
T- 实体对象泛型
- 所有超级接口:
com.baomidou.mybatisplus.core.mapper.BaseMapper<T>,com.baomidou.mybatisplus.core.mapper.Mapper<T>
public interface CrudMapper<T>
extends com.baomidou.mybatisplus.core.mapper.BaseMapper<T>
----------------------------------------
自定义批量插入 Mapper 继承即可获得批量插入能力
- 从以下版本开始:
- 2021-10-28
-
方法概要
从接口继承的方法 com.baomidou.mybatisplus.core.mapper.BaseMapper
delete, deleteBatchIds, deleteById, deleteById, deleteByMap, exists, insert, selectBatchIds, selectById, selectByMap, selectCount, selectList, selectMaps, selectMapsPage, selectObjs, selectOne, selectPage, update, updateById
-
方法详细资料
-
insertBatch
-