管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-07-31 74fa381e76019ff85fe40e59da1ec72faf0e64f5
src/main/java/com/lf/server/mapper/data/TaskMapper.java
@@ -18,20 +18,22 @@
     *
     * @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);
    /**
     * 查询所有