yangys
2024-04-23 9097df6b9559b04682e9907d900eb86d5109f84a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.qianwen.smartman.modules.andon.enums;
 
public enum AndonStatusEnum {
    NO_STATUS(0, "当前无状态"),
    HAVA_INITIATED(1, "已发起,待接收"),
    ALREADY_RECEIVED(2, "已接收,待完成"),
    COMPLETE(3, "已完成");
    
    private final Integer status;
    private final String desc;
 
    AndonStatusEnum(final Integer status, final String desc) {
        this.status = status;
        this.desc = desc;
    }
 
    public Integer getStatus() {
        return this.status;
    }
 
    public String getDesc() {
        return this.desc;
    }
}