zhangherong
2025-04-27 1007e0b552accd3288e7da6b47d8cc49a03bdf62
lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/constant/InspectionStatus.java
@@ -1,21 +1,13 @@
package org.jeecg.modules.eam.constant;
import lombok.Getter;
@Getter
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; }
    WAIT_INSPECTION, //待点检
    UNDER_INSPECTION, //点检中
    WAIT_CONFIRM, //待确认
    COMPLETE, //已完成
    ABOLISH, //已作废
    EXPIRED; //已过期
}