李林
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.chinaztt.mes.common.wechat;
 
 
import lombok.Data;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.stereotype.Component;
 
@RefreshScope
@Component
@Data
public class WechatProperty {
 
    /**
     * 信号负责人
     */
    @Value("${wechat.sign:}")
    private String sign;
 
    /**
     * 射频负责人
     */
    @Value("${wechat.radio:}")
    private String radio;
 
    /**
     * 组件负责人
     */
    @Value("${wechat.assembly:}")
    private String assembly;
 
    /**
     * 光电负责人
     */
    @Value("${wechat.electric:}")
    private String electric;
 
    /**
     * 卡具负责人
     */
    @Value("${wechat.fixture:}")
    private String fixture;
 
    /**
     * 高温负责人
     */
    @Value("${wechat.temperature:}")
    private String temperature;
 
    /**
     * 机车负责人
     */
    @Value("${wechat.engine:}")
    private String engine;
 
    /**
     * 其他负责人
     */
    @Value("${wechat.other:}")
    private String other;
}