接口 TodoMapper
- 所有超级接口:
com.baomidou.mybatisplus.core.mapper.BaseMapper<Todo>
,com.baomidou.mybatisplus.core.mapper.Mapper<Todo>
- 从以下版本开始:
- 2023-07-17 10:05:31
- 另请参阅:
-
方法概要
修饰符和类型方法说明queryUnOperators
(Set<Long> processIdSet) 查询未操作者待办数量分类查询todoList
(TodoListQueryDTO params, Long offset, Long size, String pageOrder) 待办分页查询long
todoListCount
(TodoListQueryDTO params) 待办数量从接口继承的方法 com.baomidou.mybatisplus.core.mapper.BaseMapper
delete, deleteBatchIds, deleteById, deleteById, deleteByMap, exists, insert, selectBatchIds, selectBatchIds, selectById, selectByMap, selectByMap, selectCount, selectList, selectList, selectList, selectList, selectMaps, selectMaps, selectMaps, selectMaps, selectMapsPage, selectObjs, selectObjs, selectOne, selectOne, selectPage, update, update, updateById
-
方法详细资料
-
todoCount
待办数量分类查询- 参数:
kind
- 按什么分类- 返回:
- 数量
-
todoListCount
待办数量- 参数:
params
- 查询参数- 返回:
- 数量
-
todoList
List<ProcessListVO> todoList(@Param("params") TodoListQueryDTO params, @Param("offset") Long offset, @Param("size") Long size, @Param("pageOrder") String pageOrder) 待办分页查询- 参数:
params
- 查询参数offset
- 查询起始位置size
- 大小pageOrder
- 排序字段- 返回:
- 查询列表结果
-
queryUnOperators
查询未操作者- 参数:
processIdSet
- 流程 id- 返回:
- 未操作者
-