package com.product.data.center.service.ide; import com.product.core.entity.FieldSetEntity; import com.product.core.exception.BaseException; /** * @Author cheng * @Date 2022/7/21 13:23 * @Desc */ public interface ICommonService { /** * 保存MES数据同步配置 * * @param fse * @return * @throws BaseException */ String saveMesSyncDataConfig(FieldSetEntity fse) throws BaseException; /** * 采集配置保存 * * @param fse * @return */ String saveCollectConfig(FieldSetEntity fse) throws BaseException; /** * 采集配置详情 * * @param fse * @return */ FieldSetEntity findCollectConfig(FieldSetEntity fse) throws BaseException; /** * 采集配置删除 * * @param fse * @return */ void delCollectConfig(FieldSetEntity fse) throws BaseException; /** * 提取配置保存 * * @param fse * @return */ String saveExtractConfig(FieldSetEntity fse) throws BaseException; /** * 提取配置查询 * * @param fse * @return */ FieldSetEntity findExtractConfig(FieldSetEntity fse) throws BaseException; /** * 提取配置删除 * * @param fse * @return */ void delExtractConfig(FieldSetEntity fse) throws BaseException; /** * 归档配置保存 * * @param fse * @return */ String saveArchivingConfig(FieldSetEntity fse) throws BaseException; /** * 归档配置详情 * * @param fse * @return */ FieldSetEntity findArchivingConfig(FieldSetEntity fse) throws BaseException; /** * 归档配置删除 * * @param fse * @return */ void delArchivingConfig(FieldSetEntity fse) throws BaseException; /** * 订单数据验证配置保存 * * @param fse * @return * @throws BaseException */ String saveOrderDataVerification(FieldSetEntity fse) throws BaseException; }