yantian yue
2023-10-17 487b2f2a353b89ab46cd9b784226b600b7b915b8
提交 | 用户 | 时间
1ac2bc 1 package cn.stylefeng.guns.modular.zsx.bs.job.service;
2
3 import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
4 import cn.stylefeng.guns.modular.zsx.bs.job.entity.SysJob;
5 import cn.stylefeng.guns.modular.zsx.bs.job.model.params.SysJobParam;
6 import cn.stylefeng.guns.modular.zsx.bs.job.model.result.SysJobResult;
7 import com.baomidou.mybatisplus.extension.service.IService;
8
9 import java.util.List;
10
11 /**
12  * <p>
13  * 定时任务调度表 服务类
14  * </p>
15  *
16  * @author zrm
17  * @since 2023-08-17
18  */
19 public interface SysJobService extends IService<SysJob> {
20
21     /**
22      * 新增
23      *
24      * @author zrm
25      * @Date 2023-08-17
26      */
27     void add(SysJobParam param);
28
29     /**
30      * 删除
31      *
32      * @author zrm
33      * @Date 2023-08-17
34      */
35     void delete(SysJobParam param);
36
37     /**
38      * 更新
39      *
40      * @author zrm
41      * @Date 2023-08-17
42      */
43     void update(SysJobParam param);
44
45     /**
46      * 查询单条数据,Specification模式
47      *
48      * @author zrm
49      * @Date 2023-08-17
50      */
51     SysJobResult findBySpec(SysJobParam param);
52
53     /**
54      * 查询列表,Specification模式
55      *
56      * @author zrm
57      * @Date 2023-08-17
58      */
59     List<SysJobResult> findListBySpec(SysJobParam param);
60
61     /**
62      * 查询分页数据,Specification模式
63      *
64      * @author zrm
65      * @Date 2023-08-17
66      */
67      LayuiPageInfo findPageBySpec(SysJobParam param);
68
69 }