src/main/java/com/zy/core/enums/CrnStatusType.java
@@ -27,14 +27,14 @@ public static CrnStatusType get(Short id) { if (null == id) { return null; return NONE; } for (CrnStatusType type : CrnStatusType.values()) { if (type.id.equals(id.intValue())) { return type; } } return null; return NONE; } public static CrnStatusType get(CrnStatusType type) {