heheng
2024-11-27 3c633caa438147d94cbc37993b818766de06aafb
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
package com.gkhy.common.enums;
 
/**
 * 删除状态
 *
 */
public enum StepFlagEnum
{
    SAVE(1L, "暂存"), SELECTION(2L, "选取专家"), CHECK(3L, "审核"), FINISH(4L, "完结");
 
    private final Long code;
    private final String info;
 
    StepFlagEnum(Long code, String info)
    {
        this.code = code;
        this.info = info;
    }
 
    public Long getCode()
    {
        return code;
    }
 
    public String getInfo()
    {
        return info;
    }
}