李林
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
package com.chinaztt.mes.common.oa;
 
import lombok.Data;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.stereotype.Component;
 
/**
 * @author ZTT
 */
@RefreshScope
@Component
@Data
public class OAProperty {
 
    @Value("${oa.host:}")
    private String oaHost;
 
    /**
     * 装备电缆:委外订单oa的id
     */
    @Value("${oa.equip.outsourcingOrderId:}")
    private String outsourcingOrderId;
 
    /**
     * 装备电缆:不合格审批oa的id
     */
    @Value("${oa.equip.unqualifiedProcessId:}")
    private String unqualifiedProcessId;
 
    /**
     * 工艺文件OA展示链接
     */
    @Value("${oa.documentUrl:}")
    private String documentUrl;
 
    /**
     * 客户订单审批流程id
     */
    @Value("${oa.customerOrderOaId:}")
    private String customerOrderOaId;
 
}