1821349743@qq.com
2023-02-20 93dd9bc3f16b0f626761ec624f2dc78037568897
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
38
39
40
41
42
43
package com.product.data.service.impl;
 
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
import org.quartz.SchedulerException;
 
/**
 * @Author cheng
 * @Date 2022/2/8 16:09
 * @Desc 同步数据接口
 */
public interface ISyncDataConfigService {
 
 
    FieldSetEntity findSyncTaskDetail(String uuid) throws BaseException;
 
    /**
     * 保存同步表配置
     *
     * @param fse
     * @return
     * @throws BaseException
     */
    String saveSyncTableConfig(FieldSetEntity fse) throws BaseException;
 
    /**
     * 删除同步表配置
     *
     * @param fse
     * @return
     * @throws BaseException
     */
    void delSyncTableConfig(FieldSetEntity fse) throws BaseException, SchedulerException;
 
    /**
     * 保存同步连接配置
     *
     * @param fse
     * @return
     * @throws BaseException
     */
    String saveSyncConnectionConfig(FieldSetEntity fse) throws BaseException;
}