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
| package com.qianwen.smartman.modules.fms.enums;
|
| /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/fms/enums/InstructionEnum.class */
| public enum InstructionEnum {
| ZERO(0, "已生成"),
| ONE(1, "执行中"),
| TWO(2, "执行完成"),
| THREE(3, "执行异常");
|
| private final int type;
| private final String desc;
|
| InstructionEnum(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 InstructionEnum of(Integer type) {
| if (type == null) {
| return null;
| }
| InstructionEnum[] values = values();
| for (InstructionEnum affectEnum : values) {
| if (affectEnum.type == type.intValue()) {
| return affectEnum;
| }
| }
| return null;
| }
| }
|
|