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