1b9e8898
王富生
提交
|
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
|
package com.zteits.oa.api.base.constants;
public enum BasicEnum {
/**系统编码定义*/
SYS_CODE("0001_SYS", "系统编码");
private String value;
private String desc;
BasicEnum(String value, String desc) {
this.value = value;
this.desc = desc;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getDesc() {
return desc;
}
public void setDesc(String desc) {
this.desc = desc;
}
}
|