songhuangfeng123
2022-07-09 1217e2f8b0f950ea215db9edcc073d9199ca2fe6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.gkhy.safePlatform.emergency.enums;
 
public enum EmergencyPlanStatus {
 
    START(1,"开始"),
    FIRST_LEVEL_APPROEAL(2,"一级审批"),
    SECOND_LEVEL_APPROEAL(3,"二级审批"),
    END(4,"结束");
 
    private Integer status;
 
    private String desc;
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public String getDesc() {
        return desc;
    }
 
    public void setDesc(String desc) {
        this.desc = desc;
    }
 
    EmergencyPlanStatus(Integer status, String desc) {
        this.status = status;
        this.desc = desc;
    }
}