niying
2024-01-29 0cbb588628da7bcdca146420a672916a76df2e0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.itstyle.quartz.service;
 
import com.itstyle.quartz.entity.Result;
import com.itstyle.quartz.entity.SysConfigEntity;
import org.quartz.SchedulerException;
 
public interface DistrbutionService {
 
    /**
     * 获取异构系统分发配置列表
     * @param sysConfig
     * @param pageNo
     * @param pageSize
     * @return
     * @throws SchedulerException
     */
    Result list(SysConfigEntity sysConfig, Integer pageNo, Integer pageSize) throws SchedulerException;
 
    /**
     * 新增异构系统分发配置
     * @param sysConfig
     * @throws Exception
     */
    void save(SysConfigEntity sysConfig);
 
    /**
     * 启用异构系统分发配置
     * @param sysConfig
     */
    void enable(SysConfigEntity sysConfig);
 
    /**
     * 废弃异构系统分发配置
     * @param sysConfig
     */
    void remove(SysConfigEntity sysConfig);
}