lyh
2025-04-10 f75e3b685b18477dc38f115a6c3c0f760f3bb2d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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; }
}