package org.jeecg.modules.eam.constant; public enum InspectionStatus { INIT("1", "待点检"), IN_PROGRESS("2", "点检中"), COMPLETED("3", "点检完成" ), CONFIRMED("4", "已确认" ); private final String code; private final String desc; InspectionStatus(String code, String desc) { this.code = code; this.desc = desc; } // Getters public String getCode() { return code; } public String getDesc() { return desc; } }