package com.product.data.service.impl;
|
|
import com.product.core.entity.FieldSetEntity;
|
import com.product.core.exception.BaseException;
|
|
/**
|
* @Author cheng
|
* @Date 2022/3/1 14:53
|
* @Desc
|
*/
|
public interface ISyncDataProcessService {
|
|
/**
|
* 查询数同步详情
|
*
|
* @param fse
|
* @return
|
*/
|
FieldSetEntity findDataProcessInfo(FieldSetEntity fse) throws BaseException;
|
|
/**
|
* 保存数据处理配置详情
|
*
|
* @param fse
|
* @throws BaseException
|
*/
|
void saveDataProcessInfo(FieldSetEntity fse) throws BaseException;
|
|
|
String efficacySql(String runSql) throws BaseException;
|
|
}
|