update mp化

This commit is contained in:
疯狂的狮子li
2021-04-14 12:01:26 +08:00
parent 48d61a3cdf
commit adeaa77864
21 changed files with 473 additions and 1068 deletions

View File

@@ -9,14 +9,13 @@ import java.util.List;
/**
* 定时任务调度信息信息 服务层
*
*
* @author ruoyi
*/
public interface ISysJobService extends IService<SysJob>
{
public interface ISysJobService extends IService<SysJob> {
/**
* 获取quartz调度器的计划任务
*
*
* @param job 调度信息
* @return 调度任务集合
*/
@@ -24,7 +23,7 @@ public interface ISysJobService extends IService<SysJob>
/**
* 通过调度任务ID查询调度信息
*
*
* @param jobId 调度任务ID
* @return 调度任务对象信息
*/
@@ -32,7 +31,7 @@ public interface ISysJobService extends IService<SysJob>
/**
* 暂停任务
*
*
* @param job 调度信息
* @return 结果
*/
@@ -40,7 +39,7 @@ public interface ISysJobService extends IService<SysJob>
/**
* 恢复任务
*
*
* @param job 调度信息
* @return 结果
*/
@@ -48,7 +47,7 @@ public interface ISysJobService extends IService<SysJob>
/**
* 删除任务后所对应的trigger也将被删除
*
*
* @param job 调度信息
* @return 结果
*/
@@ -56,7 +55,7 @@ public interface ISysJobService extends IService<SysJob>
/**
* 批量删除调度信息
*
*
* @param jobIds 需要删除的任务ID
* @return 结果
*/
@@ -64,7 +63,7 @@ public interface ISysJobService extends IService<SysJob>
/**
* 任务调度状态修改
*
*
* @param job 调度信息
* @return 结果
*/
@@ -72,7 +71,7 @@ public interface ISysJobService extends IService<SysJob>
/**
* 立即运行任务
*
*
* @param job 调度信息
* @return 结果
*/
@@ -80,7 +79,7 @@ public interface ISysJobService extends IService<SysJob>
/**
* 新增任务
*
*
* @param job 调度信息
* @return 结果
*/
@@ -88,7 +87,7 @@ public interface ISysJobService extends IService<SysJob>
/**
* 更新任务
*
*
* @param job 调度信息
* @return 结果
*/
@@ -96,7 +95,7 @@ public interface ISysJobService extends IService<SysJob>
/**
* 校验cron表达式是否有效
*
*
* @param cronExpression 表达式
* @return 结果
*/