zouyu
6 天以前 e50a43bb067adff10cd1dcc81349b1aafdfda882
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
package com.ruoyi.common.config.ifs;
 
import lombok.Data;
 
/**
 * @Author zhuo
 * @Date 2024/9/29
 */
@Data
public class IfsProperties {
 
    /**
     * 域
     */
    private String contract;
 
    /**
     * 秘钥-get
     */
    private String contractKeyGet;
 
    /**
     * 秘钥-post
     */
    private String contractKeyPost;
 
    /**
     * 80
     */
    private String custorder;
 
    /**
     * 8008
     */
    private String custorderPort;
 
    /**
     * 8081
     */
    private String erpServices;
 
    /**
     * 待检库位
     */
    private String tobeInspectedLocation;
 
    /**
     * 原材料合格库位
     */
    private String rawQualifiedLocation;
 
    /**
     * 成品合格库位
     */
    private String productQualifiedLocation;
 
}