111
k94314517
2025-07-09 d5984685e7efd46a5e850ade13b22fa727163a47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.doumee.dao.system;
 
import com.doumee.dao.system.model.SystemJob;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.doumee.dao.system.vo.SystemJobListVO;
import com.doumee.dao.system.dto.QuerySystemJobListDTO;
 
import java.util.List;
 
public interface SystemJobListMapper extends BaseMapper<SystemJob> {
 
    /**
     * 查询任务管理列表
     *
     * @param dto 详见QuerySystemJobListDTO
     * @return List<SystemJobListVO>
     */
    List<SystemJobListVO> selectList(QuerySystemJobListDTO dto);
}