354798ggg
2023-08-29 fd0c7c174d7b7313aa49061df05350405a3c1bf1
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
package com.product.data.sync.service.ide;
 
import com.product.common.exception.job.TaskException;
import com.product.core.entity.DataTableEntity;
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
import org.quartz.SchedulerException;
 
/**
 * @author: ZhouJie
 * @date: 2021/8/11 16:36
 * @description: 数据库同步配置
 */
public interface ISyncConfigService {
 
    /**
     *     保存数据库同步配置
     * @param
     * @return
     * @throws BaseException
     */
    String saveSyncConfig(FieldSetEntity fieldSetEntity) throws BaseException, TaskException, SchedulerException;
 
 
    /**
     *     删除数据库同步配置
     * @param
     * @return
     * @throws BaseException
     */
    boolean delSyncConfig(FieldSetEntity fieldSetEntity) throws BaseException, SchedulerException;
 
}