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
| package com.yeshi.fanli.dto.user;
|
| public enum UserInviteLevelEnum {
| noActive(0,"未激活", ""),
| actived(0, "已经激活", ""),
| highVIP(7,"高级会员", ""),
| vipApply(7,"超级会员申请中", ""),
| vip(10, "超级会员", ""),
| tearcherApply(10,"导师申请中",""),
| tearcher(11,"导师", "");
|
| private int level;
| private String name;
| private String link;
|
| private UserInviteLevelEnum(int level, String name, String link) {
| this.level = level;
| this.name = name;
| this.link = link;
| }
|
| public String getName() {
| return this.name;
| }
|
| public String getLink() {
| return this.link;
| }
|
| public int getLevel() {
| return level;
| }
|
| }
|
|