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);
|
}
|