沙钢智慧能源系统后端代码
liriming
2024-10-14 ccf75464534965c47866449b2b4e457a6dadede9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package com.iailab.module.shasteel.job.service;
 
import com.iailab.framework.common.pojo.PageResult;
import com.iailab.framework.common.service.BaseService;
import com.iailab.module.shasteel.job.dto.ScheduleJobDTO;
import com.iailab.module.shasteel.job.entity.ScheduleJobEntity;
import com.iailab.module.shasteel.job.vo.ScheduleJobReqVO;
 
 
/**
 * 定时任务
 *
 * @author Mark sunlightcs@gmail.com
 */
public interface ScheduleJobService{
 
    PageResult<ScheduleJobEntity> page(ScheduleJobReqVO reqVO);
 
    ScheduleJobDTO get(Long id);
 
    /**
     * 保存定时任务
     */
    void save(ScheduleJobDTO dto);
    
    /**
     * 更新定时任务
     */
    void update(ScheduleJobDTO dto);
    
    /**
     * 批量删除定时任务
     */
    void deleteBatch(Long id);
    
    /**
     * 批量更新定时任务状态
     */
    int updateBatch(Long[] ids, int status);
    
    /**
     * 立即执行
     */
    void run(Long[] ids);
    
    /**
     * 暂停运行
     */
    void pause(Long[] ids);
    
    /**
     * 恢复运行
     */
    void resume(Long[] ids);
}