鞍钢鲅鱼圈能源管控系统后端代码
houzhongjian
2024-12-26 07073fa5e1e14b1f9d5d4f3253d9403ab311ae3c
提交 | 用户 | 时间
07073f 1 /**
H 2  * Copyright (c) 2018 人人开源 All rights reserved.
3  *
4  * https://www.renren.io
5  *
6  * 版权所有,侵权必究!
7  */
8
9 package com.iailab.module.ansteel.job.service;
10
11 import com.iailab.framework.common.page.PageData;
12 import com.iailab.framework.common.service.BaseService;
13 import com.iailab.module.ansteel.job.dto.ScheduleJobLogDTO;
14 import com.iailab.module.ansteel.job.entity.ScheduleJobLogEntity;
15
16 import java.util.Map;
17
18 /**
19  * 定时任务日志
20  *
21  * @author Mark sunlightcs@gmail.com
22  */
23 public interface ScheduleJobLogService extends BaseService<ScheduleJobLogEntity> {
24
25     PageData<ScheduleJobLogDTO> page(Map<String, Object> params);
26
27     ScheduleJobLogDTO get(Long id);
28 }