admin
2020-05-06 24a8d17e007545f7426c48352109aa1a9c6587ee
fanli/src/main/java/com/yeshi/fanli/dto/user/UserInviteLevelEnum.java
@@ -1,12 +1,20 @@
package com.yeshi.fanli.dto.user;
public enum UserInviteLevelEnum {
   noActive("未激活", ""), actived("已经激活", ""), vipApply("超级会员申请中", ""), vip("超级会员", ""), tearcherApply("导师申请中",
         ""), tearcher("导师", "");
   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(String name, String link) {
   private UserInviteLevelEnum(int level, String name, String link) {
      this.level = level;
      this.name = name;
      this.link = link;
   }
@@ -18,4 +26,9 @@
   public String getLink() {
      return this.link;
   }
   public int getLevel() {
      return level;
   }
}