package com.qianwen.smartman.modules.tpm.enums;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/tpm/enums/BizTypeEnum.class */
|
public enum BizTypeEnum {
|
T1(1, "维修单"),
|
T2(2, "保养记录");
|
|
private final int type;
|
private final String desc;
|
|
BizTypeEnum(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 BizTypeEnum of(Integer type) {
|
if (type == null) {
|
return null;
|
}
|
BizTypeEnum[] values = values();
|
for (BizTypeEnum bizTypeEnum : values) {
|
if (bizTypeEnum.type == type.intValue()) {
|
return bizTypeEnum;
|
}
|
}
|
return null;
|
}
|
}
|