MyBatis-Plus BaseMapper和IService使用手册
Mybatis-plus 文档 注释 mapper extends BaseMapper service extends IService 注释 DDML 进一步封装:采用 get 查询单行, remove 删除, list 查询集合, page 分页 int insert(T entity); boolean save(T entity); 选择字段,策略插入 boolean saveBatch(Collection<T> entityList); 批量插入 boolean saveOrUpdateBatch(Collection<T> entityList); int deleteById(Serializable id); boolean removeById(Serializable id); 根据 entity 条件删除 int delete(Wrapper<T> wrapper); boolean remove(Wrapper<T> queryWrapper); 无对应记录也返回true columnMap 删除条件 int deleteByMap(Map<String, Object> columnMap); boolean removeByMap(Map<String, Object> columnMap); columnMap 表字段 map 对象 int