fix
Hentua
2023-04-19 a8a40896108ac780a55ecc504cecdfd041ab2838
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 cc.mrbird.febs.common.enumerates;
 
import lombok.Getter;
 
@Getter
public enum MemberLevelEnums {
 
    ZERO_LEVEL_Y(1, "ZERO_LEVEL", "素人")
    ,ZERO_LEVEL_N(2, "ZERO_LEVEL", "素人")
    ,FIRST_LEVEL_Y(1, "FIRST_LEVEL", "玉郎")
    ,FIRST_LEVEL_N(2, "FIRST_LEVEL", "丽人")
    ,SECOND_LEVEL_Y(1, "SECOND_LEVEL", "才子")
    ,SECOND_LEVEL_N(2, "SECOND_LEVEL", "佳人")
    ,THIRD_LEVEL_Y(1, "THIRD_LEVEL", "蓝颜")
    ,THIRD_LEVEL_N(2, "THIRD_LEVEL", "红颜")
    ,FOUR_LEVEL_Y(1, "FOUR_LEVEL", "娇娘")
    ,FOUR_LEVEL_N(2, "FOUR_LEVEL", "贤仕");
 
    private int male;
 
    private String code;
 
    private String desc;
    MemberLevelEnums(int male, String code, String desc) {
        this.male = male;
        this.code = code;
        this.desc = desc;
    }
}