You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.docus.bgts.enums;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 代码库
|
|
|
|
*/
|
|
|
|
public enum Codes {
|
|
|
|
//静态文件存放位置
|
|
|
|
JSON_ADDRESS("999","\\dataConfig\\homeQualitySet.json"),
|
|
|
|
//接收二级节点
|
|
|
|
MSG("201","Msg"),
|
|
|
|
//节点根
|
|
|
|
DIRECTORY("1000","directory"),
|
|
|
|
//上传接口地址
|
|
|
|
UPLOAD("0","uploadConnector"),
|
|
|
|
REPOAL("0","repoalConnector"),
|
|
|
|
//患者主索引号
|
|
|
|
EMP_ID("0","indexFlag")
|
|
|
|
;
|
|
|
|
//代码
|
|
|
|
private String code;
|
|
|
|
//描述
|
|
|
|
private String message;
|
|
|
|
|
|
|
|
private Codes(String code, String messgae) {
|
|
|
|
this.code = code;
|
|
|
|
this.message = messgae;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getCode() {
|
|
|
|
return code;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getMessage() {
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
}
|