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;
|
| public enum RealTimePartTypeEnum {
| TO_BE_PROCESSED(1, "毛坯"),
| IN_PROCESS(2, "加工中"),
| PROCESS_FINISH(3, "成品"),
| PARTIALLY_PRODUCTS(4, "半成品"),
| NONCONFORMING_PRODUCTS(5, "不合格品");
|
| private final int type;
| private final String desc;
|
| RealTimePartTypeEnum(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 RealTimePartTypeEnum of(Integer type) {
| if (type == null) {
| return null;
| }
| RealTimePartTypeEnum[] values = values();
| for (RealTimePartTypeEnum typeEnum : values) {
| if (typeEnum.type == type.intValue()) {
| return typeEnum;
| }
| }
| return null;
| }
| }
|
|