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
34
35
36
37
38
39
40
| package com.qianwen.smartman.modules.tpm.enums;
|
| import com.qianwen.smartman.common.constant.CheckProjectConstant;
|
|
| public enum MaintainStatusEnum {
| T1(1, CheckProjectConstant.CHECK_RESULT_OK),
| T2(2, "待保养"),
| T3(3, "保养中"),
| T4(4, "待确认");
|
| private final int type;
| private final String desc;
|
| MaintainStatusEnum(final int type, final String desc) {
| this.type = type;
| this.desc = desc;
| }
|
| public int getType() {
| return this.type;
| }
|
| public String getDesc() {
| return this.desc;
| }
|
| public static MaintainStatusEnum of(Integer type) {
| if (type == null) {
| return null;
| }
| MaintainStatusEnum[] values = values();
| for (MaintainStatusEnum maintainStatusEnum : values) {
| if (maintainStatusEnum.type == type.intValue()) {
| return maintainStatusEnum;
| }
| }
| return null;
| }
| }
|
|