package com.qianwen.smartman.modules.fms.enums;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/fms/enums/TrayStateEnum.class */
|
public enum TrayStateEnum {
|
FULL(1, "满托"),
|
EMPTY(2, "空托");
|
|
private final Integer type;
|
private final String desc;
|
|
TrayStateEnum(final Integer type, final String desc) {
|
this.type = type;
|
this.desc = desc;
|
}
|
|
public Integer getType() {
|
return this.type;
|
}
|
|
public String getDesc() {
|
return this.desc;
|
}
|
|
public static TrayStateEnum of(Integer type) {
|
if (type == null) {
|
return null;
|
}
|
TrayStateEnum[] values = values();
|
for (TrayStateEnum typeEnum : values) {
|
if (typeEnum.type.equals(type)) {
|
return typeEnum;
|
}
|
}
|
return null;
|
}
|
}
|