admin
2020-04-09 aa774af6df16ef11e1e34ac5aeed9aae0cb3e8e2
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package com.yeshi.fanli.entity.bus.user.vip;
 
public enum UserLevelEnum {
    //team_subsidy_6_pre_0_0
    //team_subsidy_6_pre_0_3
    //team_subsidy_6_pre_0_7
    //team_subsidy_6_pre_0_10
    //team_subsidy_6_pre_0_11
    
    
    //team_subsidy_6_pre_3_0
    //team_subsidy_6_pre_3_3
    //team_subsidy_6_pre_3_7
    //team_subsidy_6_pre_3_10
    //team_subsidy_6_pre_3_11
    
    
    //team_subsidy_6_pre_7_0
    //team_subsidy_6_pre_7_3
    //team_subsidy_6_pre_7_7
    //team_subsidy_6_pre_7_10
    //team_subsidy_6_pre_7_11
    
    
    //team_subsidy_6_pre_10_0=0
    //team_subsidy_6_pre_10_3=0
    //team_subsidy_6_pre_10_7=0
    //team_subsidy_6_pre_10_10=0
    //team_subsidy_6_pre_10_11=0
    
    
    //team_subsidy_6_pre_11_0=0
    //team_subsidy_6_pre_11_3=0
    //team_subsidy_6_pre_11_7=0
    //team_subsidy_6_pre_11_10=0
    //team_subsidy_6_pre_11_11=0
    
    
    
    //team_subsidy_7_pre_0_0
    //team_subsidy_7_pre_0_3
    //team_subsidy_7_pre_0_7
    //team_subsidy_7_pre_0_10
    //team_subsidy_7_pre_0_11
    
    
    //team_subsidy_7_pre_3_0
    //team_subsidy_7_pre_3_3
    //team_subsidy_7_pre_3_7
    //team_subsidy_7_pre_3_10
    //team_subsidy_7_pre_3_11
    
    
    //team_subsidy_7_pre_7_0
    //team_subsidy_7_pre_7_3
    //team_subsidy_7_pre_7_7
    //team_subsidy_7_pre_7_10
    //team_subsidy_7_pre_7_11
    
    
    //team_subsidy_7_pre_10_0=0
    //team_subsidy_7_pre_10_3=0
    //team_subsidy_7_pre_10_7=0
    //team_subsidy_7_pre_10_10=0
    //team_subsidy_7_pre_10_11=0
    
    
    //team_subsidy_7_pre_11_0=0
    //team_subsidy_7_pre_11_3=0
    //team_subsidy_7_pre_11_7=0
    //team_subsidy_7_pre_11_10=0
    //team_subsidy_7_pre_11_11=0
    
    
    
 
    daRen(0, 0, "快省达人", "actived", "http://www.baidu.com"),
    normalVIP(3, 30, "普通会员", "vipPre1", "http://www.baidu.com"),
    highVIP(7, 70, "高级会员", "vipPre2", "http://www.baidu.com"),
    superVIP(10, 100, "超级会员", "vip", "http://www.baidu.com"),
    tearcher(11, 101, "资深导师", "tearcher", "http://www.baidu.com");
 
    private int level;
    private int orderRank;
    private String name;
    private String tag;
    private String detailLink;
 
    private UserLevelEnum(int level, int orderRank, String name, String tag, String detailLink) {
        this.level = level;
        this.orderRank = orderRank;
        this.name = name;
        this.tag = tag;
        this.detailLink = detailLink;
    }
 
    public int getLevel() {
        return level;
    }
 
    public int getOrderRank() {
        return orderRank;
    }
 
    public String getName() {
        return name;
    }
 
    public String getTag() {
        return tag;
    }
 
    public String getDetailLink() {
        return detailLink;
    }
 
}