ApplicationConfig.java
925 Bytes
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
package com.huaheng.control.management.utils.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
import lombok.Data;
@Data
@Component
@ConfigurationProperties(prefix = "huaheng.system")
public class ApplicationConfig {
/** 版本号 */
private String version;
/** 特殊库存标记2 */
private String artifactId;
/** WMS服务地址 */
private String wms_ip;
/** WMS TOKEN */
private String wms_token;
/** WMS TEST URL */
private String wms_test_url;
/** WMS TEST REQUEST BODY */
private String wms_test_request_body;
/** WCS服务地址 */
private String wcs_ip;
/** WCS TOKEN */
private String wcs_token;
/** WCS TEST URL */
private String wcs_test_url;
/** WCS TEST REQUEST BODY */
private String wcs_test_request_body;
}