1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.vincent.rsf.server.manager.enums;
|
| /**
| * 通用状态
| */
| public enum CommonStatus {
|
| //通用状态
| COMMONSTATUS_YES(1, "是否"),
| COMMONSTATUS_NO(0, "否"),
| ;
|
| CommonStatus(Integer val, String desc) {
| this.val = val;
| this.desc = desc;
| }
|
| public Integer val;
|
| public String desc;
| }
|
|