package com.qianwen.smartman.modules.fms.enums;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/fms/enums/RealTimePartTypeEnum.class */
|
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;
|
}
|
}
|