package com.product.data.center.service.ide; import com.product.core.entity.FieldSetEntity; import com.product.core.exception.BaseException; import javax.servlet.http.HttpServletRequest; /** * @Author cheng * @Date 2022/12/16 13:24 * @Desc MES外部接口 */ public interface IMesExternalService { /** * 采集配置保存 * * @param request * @throws BaseException */ void saveCollectConfig(HttpServletRequest request) throws BaseException; /** * 提取配置保存 * * @param fse * @throws BaseException */ void saveExtractConfig(FieldSetEntity fse) throws BaseException; /** * 归档配置保存 * * @param fse * @throws BaseException */ void saveArchiveConfig(FieldSetEntity fse) throws BaseException; void saveCollectLog(FieldSetEntity fse)throws BaseException; void saveExtractLog(FieldSetEntity fse)throws BaseException; }