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
94
package com.vci.constant;
 
/**
 * 常用的变量名称
 * @author weidy
 * @date 2020/10/19 15:37
 */
public class WFVariablesKeyConstant {
 
    /**
     * 主键--兼容以前的内容
     */
    public static final String OIDS_OLD = "objId";
 
    /**
     * 业务类型--兼容以前的内容
     */
    public static final String BTMTYPE_OLD = "boType";
 
    /**
     * 显示的界面
     */
    public static final String UI_DETAIL_URL = "detailUrl";
 
    /**
     * 显示的表格
     */
    public static final String UI_TABLE_CODE = "uiTableCode";
 
    /**
     * 显示的UI上下文
     */
    public static final String UI_CONTENT_CODE = "uiContentCode";
 
    /**
     * 显示的页面所属的业务类型
     */
    public static final String UI_TYPE = "uiType";
 
    /**
     * 启动后的状态
     */
    public static final String START_STATUS = "startLCStatus";
 
    /**
     * 重置后的状态
     */
    public static final String RESET_STATUS = "resetLCStatus";
 
    /**
     * 发布的时候状态
     */
    public static final String RELEASE_STATUS = "releaseStatus";
 
    /**
     * 发布的时候远程调用的地址
     */
    public static final String RELEASE_REMOTE_METHOD = "releaseRemoteMethod";
 
    /**
     * 终止的时候远程调用的地址
     */
    public static final String RESET_REMOTE_METHOD = "resetRemoteMethod";
 
    /**
     * 当前用户的json信息
     */
    public static final String CURRENT_USER_JSON = "currentUserJsonString";
 
    /**
     * 冻结时间
     */
    public static final String SUSPEND_TIME = "SUSPEND_TIME";
 
    /**
     * 读取超时
     */
    public static final String READ_TIMEOUT = "readTimeout";
 
    /**
     * 请求超时
     */
    public static final String REQUEST_TIMEOUT = "requestTimeout";
 
    /**
     * 链接超时
     */
    public static final String CONNECT_TIMEOUT = "connectTimeout";
 
    /**
     * 数据的最大密级
     */
    public static final String DATA_MAX_SECRET = "dataMaxSecret";
}