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