You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.4 KiB
67 lines
1.4 KiB
package com.ruoyi.quartz.mapper; |
|
|
|
import java.util.List; |
|
import com.ruoyi.quartz.domain.SysJob; |
|
|
|
/** |
|
* 调度任务信息 数据层 |
|
* |
|
* @author ruoyi |
|
*/ |
|
public interface SysJobMapper |
|
{ |
|
/** |
|
* 查询调度任务日志集合 |
|
* |
|
* @param job 调度信息 |
|
* @return 操作日志集合 |
|
*/ |
|
public List<SysJob> selectJobList(SysJob job); |
|
|
|
/** |
|
* 查询所有调度任务 |
|
* |
|
* @return 调度任务列表 |
|
*/ |
|
public List<SysJob> selectJobAll(); |
|
|
|
/** |
|
* 通过调度ID查询调度任务信息 |
|
* |
|
* @param jobId 调度ID |
|
* @return 角色对象信息 |
|
*/ |
|
public SysJob selectJobById(Long jobId); |
|
|
|
/** |
|
* 通过调度ID删除调度任务信息 |
|
* |
|
* @param jobId 调度ID |
|
* @return 结果 |
|
*/ |
|
public int deleteJobById(Long jobId); |
|
|
|
/** |
|
* 批量删除调度任务信息 |
|
* |
|
* @param ids 需要删除的数据ID |
|
* @return 结果 |
|
*/ |
|
public int deleteJobByIds(Long[] ids); |
|
|
|
/** |
|
* 修改调度任务信息 |
|
* |
|
* @param job 调度任务信息 |
|
* @return 结果 |
|
*/ |
|
public int updateJob(SysJob job); |
|
|
|
/** |
|
* 新增调度任务信息 |
|
* |
|
* @param job 调度任务信息 |
|
* @return 结果 |
|
*/ |
|
public int insertJob(SysJob job); |
|
}
|
|
|