| | |
| | | * |
| | | * @param name 任务名称 |
| | | * @param status 任务状态 |
| | | * @param type 任务类别 |
| | | * @return 记录数 |
| | | */ |
| | | public Integer selectCount(String name, Integer status); |
| | | public Integer selectCount(String name, Integer status, String type); |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * |
| | | * @param name 任务名称 |
| | | * @param status 任务状态 |
| | | * @param type 任务类别 |
| | | * @param limit 记录数 |
| | | * @param offset 偏移量 |
| | | * @return 列表 |
| | | */ |
| | | public List<TaskEntity> selectByPage(String name, Integer status, Integer limit, Integer offset); |
| | | public List<TaskEntity> selectByPage(String name, Integer status, String type, Integer limit, Integer offset); |
| | | |
| | | /** |
| | | * 查询所有 |