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;

}