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";
|
}
|