提交 | 用户 | 时间
|
516ef4
|
1 |
/** |
L |
2 |
* Copyright (c) 2018 人人开源 All rights reserved. |
|
3 |
* |
|
4 |
* https://www.renren.io |
|
5 |
* |
|
6 |
* 版权所有,侵权必究! |
|
7 |
*/ |
|
8 |
|
|
9 |
package com.iailab.module.shasteel.job.service; |
|
10 |
|
|
11 |
import com.iailab.framework.common.page.PageData; |
|
12 |
import com.iailab.framework.common.service.BaseService; |
|
13 |
import com.iailab.module.shasteel.job.dto.ScheduleJobLogDTO; |
|
14 |
import com.iailab.module.shasteel.job.entity.ScheduleJobLogEntity; |
|
15 |
import com.iailab.module.shasteel.job.dto.ScheduleJobLogDTO; |
|
16 |
|
|
17 |
import java.util.Map; |
|
18 |
|
|
19 |
/** |
|
20 |
* 定时任务日志 |
|
21 |
* |
|
22 |
* @author Mark sunlightcs@gmail.com |
|
23 |
*/ |
|
24 |
public interface ScheduleJobLogService extends BaseService<ScheduleJobLogEntity> { |
|
25 |
|
|
26 |
PageData<ScheduleJobLogDTO> page(Map<String, Object> params); |
|
27 |
|
|
28 |
ScheduleJobLogDTO get(Long id); |
|
29 |
} |