管道基础大数据平台系统开发-【后端】-Server
13693261870
2024-03-25 b6b0cb226fcf184525ee7b36af3a09471e9c0057
src/main/java/com/lf/server/mapper/data/TaskMapper.java
@@ -16,20 +16,24 @@
    /**
     * 查询记录数
     *
     * @param name 任务名称
     * @param name   任务名称
     * @param status 任务状态
     * @param type   任务类别
     * @return 记录数
     */
    public Integer selectCount(String name);
    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 limit, Integer offset);
    public List<TaskEntity> selectByPage(String name, Integer status, String type, Integer limit, Integer offset);
    /**
     * 查询所有