package cn.stylefeng.guns.modular.zsx.bs.job.service;
|
|
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
|
import cn.stylefeng.guns.modular.zsx.bs.job.entity.SysJob;
|
import cn.stylefeng.guns.modular.zsx.bs.job.model.params.SysJobParam;
|
import cn.stylefeng.guns.modular.zsx.bs.job.model.result.SysJobResult;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 定时任务调度表 服务类
|
* </p>
|
*
|
* @author zrm
|
* @since 2023-08-17
|
*/
|
public interface SysJobService extends IService<SysJob> {
|
|
/**
|
* 新增
|
*
|
* @author zrm
|
* @Date 2023-08-17
|
*/
|
void add(SysJobParam param);
|
|
/**
|
* 删除
|
*
|
* @author zrm
|
* @Date 2023-08-17
|
*/
|
void delete(SysJobParam param);
|
|
/**
|
* 更新
|
*
|
* @author zrm
|
* @Date 2023-08-17
|
*/
|
void update(SysJobParam param);
|
|
/**
|
* 查询单条数据,Specification模式
|
*
|
* @author zrm
|
* @Date 2023-08-17
|
*/
|
SysJobResult findBySpec(SysJobParam param);
|
|
/**
|
* 查询列表,Specification模式
|
*
|
* @author zrm
|
* @Date 2023-08-17
|
*/
|
List<SysJobResult> findListBySpec(SysJobParam param);
|
|
/**
|
* 查询分页数据,Specification模式
|
*
|
* @author zrm
|
* @Date 2023-08-17
|
*/
|
LayuiPageInfo findPageBySpec(SysJobParam param);
|
|
}
|