admin
2020-04-15 ee5c8055b1c0dd7c67a9025a76b10bd287c93d9a
fanli/src/main/java/com/yeshi/fanli/service/inter/user/vip/UserVIPInfoService.java
@@ -22,28 +22,6 @@
    */
   public void addUserVIPInfo(UserVIPInfo info) throws UserVIPInfoException;
   /**
    * 申请VIP
    *
    * @param uid
    * @throws UserVIPInfoException
    */
   public void applyVIP(Long uid) throws UserVIPInfoException;
   /**
    * 通过vip申请
    *
    * @param uid
    */
   public void passVIPApply(Long uid) throws UserVIPInfoException;
   /**
    * 拒绝申请
    *
    * @param uid
    * @param reason
    */
   public void rejectVIPApply(Long uid, String reason) throws UserVIPInfoException;
   /**
    * 是否为VIP
@@ -82,12 +60,6 @@
    */
   public Map<Long,Boolean> listByUids(List<Long> uid);
   /**
    * 验证是否满足会员条件
    * @param uid
    * @return
    */
   public boolean verifyConform(Long uid);
   /**
    * 待审核列表
@@ -100,19 +72,13 @@
   public long countQuery(String key, Integer state);
   /**
    * 超级会员与上级关系脱离
    * @param workerId
    * @param bossId
    */
   public void inviteSeparate(Long workerId, Long bossId);
   /**
    * 超级会员申请通过
    * @param uid
    * @throws UserVIPInfoException
    */
   public void passVIPApplyNew(Long uid) throws UserVIPInfoException;
   public void passVIPApply(Long uid) throws UserVIPInfoException;
   /**
    * 超级会员未通过
@@ -120,13 +86,13 @@
    * @param reason
    * @throws UserVIPInfoException
    */
   public void rejectVIPApplyNew(Long uid, String reason) throws UserVIPInfoException;
   public void rejectVIPApply(Long uid, String reason) throws UserVIPInfoException;
   /**
    *  超级会员申请
    * @param uid
    * @throws UserVIPInfoException
    */
   public void applyVIPNew(Long uid) throws UserVIPInfoException;
   public void applyVIP(Long uid) throws UserVIPInfoException;
}