李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
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
package com.chinaztt.mes.warehouse.entity;
 
import lombok.Data;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.stereotype.Component;
 
/**
 * @Description : 包装称重接口地址配置类
 * @ClassName : PackingBean
 * @Author : sll
 * @Date: 2022-05-30  10:55
 */
@RefreshScope
@Component
@Data
public class PackingBean{
    /**
     * 包装称重的地址
     */
    @Value("${packing.host:}")
    private String host;
 
    /**
     * 光电混合缆-华为合格证积木报表地址
     */
    @Value("${packing.gdhhl_huawei:}")
    private String gdhhlHuawei;
 
    /**
     * 称重标签积木表报地址
     */
    @Value("${packing.weight_lable:}")
    private String weightLable;
 
    /**
     * 高温合格证积木地址
     */
    @Value("${packing.gw_huawei_url:}")
    private String gwHuaweiUrl;
 
    /**
     * 光电合格证积木地址
     */
    @Value("${packing.gd_huawei_url:}")
    private String gdHuaweiUrl;
}