许鹏程
2023-06-30 3bbfaa3d7d416afbd154576453c8ee9e7e2f8899
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
33
34
35
36
37
38
39
40
41
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;
}