package com.qianwen.smartman.modules.perf.enums; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/perf/enums/PerfEnum.class */ public enum PerfEnum { OUT_PUT(11, "产量"); private final Integer code; private final String desc; PerfEnum(final Integer code, final String desc) { this.code = code; this.desc = desc; } public Integer getCode() { return this.code; } public String getDesc() { return this.desc; } }