p-honggang.li
7 天以前 baac505052a5d9e63536eb7de32ba346d7e98ca7
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package com.webmanage.config;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
 
/**
 * 工作流配置属性
 */
@Data
@Component
@ConfigurationProperties(prefix = "workflow")
public class WorkflowProperties {
 
    /**
     * 审批服务配置
     */
    private Approval approval = new Approval();
 
    /**
     * 工作流服务配置
     */
    private Process process = new Process();
 
    /**
     * RestTemplate超时配置
     */
    private RestTemplate restTemplate = new RestTemplate();
 
    @Data
    public static class Approval {
        /**
         * 审批服务基础URL
         */
        private String baseUrl;
 
        /**
         * 模板关系查询URL
         */
        private String templateRelationUrl;
 
        /**
         * 单位ID
         */
        private String unitId;
    }
 
    @Data
    public static class Process {
        /**
         * 工作流服务基础URL
         */
        private String baseUrl;
 
        /**
         * 启动流程URL
         */
        private String startProcessUrl;
 
        /**
         * 查询代办URL
         */
        private String findTodoUrl;
 
        /**
         * 查询已办URL
         */
        private String findDoneUrl;
 
        /**
         * 提交流程URL
         */
        private String completeUrl;
 
        /**
         * 驳回流程URL
         */
        private String rejectUrl;
    }
 
    @Data
    public static class RestTemplate {
        /**
         * 连接超时时间(毫秒)
         */
        private int connectTimeout = 5000;
 
        /**
         * 读取超时时间(毫秒)
         */
        private int readTimeout = 10000;
    }
}