1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package org.jeecg.modules.eam.constant;
|
| public enum InspectionStatus {
| INIT("1", "待点检"),
| IN_PROGRESS("2", "点检中"),
| COMPLETED("3", "点检完成" ),
| CONFIRMED("4", "已确认" );
|
| private final String code;
| private final String desc;
|
| InspectionStatus(String code, String desc) {
|
| this.code = code;
| this.desc = desc;
| }
|
| // Getters
| public String getCode() { return code; }
| public String getDesc() { return desc; }
| }
|
|