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; }