package com.qianwen.smartman.modules.perf.enums; 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; } }