MybatisPlus除了提供BaseMapper,还提供了通用的Service接口:`IService` ### 2.6.1.新增 ```java // 插入一条记录(选择字段,策略插入) boolean save(T entity); // 插入(批量) boolean saveBatch(Collection<T> entityList); // 插入(批量) boolean saveBatch(Collection<T> entityList, int batchSize); `...