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;
|
}
|
|
}
|