package com.qianwen.core.coderule.constant.enums;
|
|
/* loaded from: blade-starter-coderule-9.3.0.0-SNAPSHOT.jar:org/springblade/core/coderule/constant/enums/MetaObjectTypeEnum.class */
|
public enum MetaObjectTypeEnum {
|
WORK_STATION("Workstation"),
|
CHECK_RECORD("CheckRecord"),
|
MAINTAIN_PLAN("MaintainPlan"),
|
MAINTAIN_RECORD("MaintainRecord"),
|
REPAIR_APPLY("RepairApply"),
|
REPAIR_RECORD("RepairRecord");
|
|
private String id;
|
|
MetaObjectTypeEnum(String id) {
|
this.id = id;
|
}
|
|
public String getId() {
|
return this.id;
|
}
|
}
|