src/main/java/com/zy/core/enums/CrnLiftPosType.java
@@ -2,14 +2,16 @@ public enum CrnLiftPosType { DOWN(1), // 下定位 UP(2), // 上定位 NONE(0), // 不在定位 DOWN(1, "下定位"), // 下定位 UP(2, "上定位"), // 上定位 NONE(0, "不在定位"), // 不在定位 ; public Integer id; CrnLiftPosType(Integer id) { public String desc; CrnLiftPosType(Integer id, String desc) { this.id = id; this.desc = desc; } public static CrnLiftPosType get(Short id) {