许鹏程
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
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;
 
}