kongzy
2023-11-24 ebe94e19812a1b24257d60831ec932756855e94b
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.assess.common.enums;
 
/**
 * 用户身份
 *
 */
public enum UserIdentityEnum
{
    MONITOR(0, "监管用户"), AGENCY(1, "机构用户"), EXPERT(2, "专家用户");
 
    private final Integer code;
    private final String info;
 
    UserIdentityEnum(Integer code, String info)
    {
        this.code = code;
        this.info = info;
    }
 
    public Integer getCode()
    {
        return code;
    }
 
    public String getInfo()
    {
        return info;
    }
}