yujian
2020-05-09 7e7db2fa55a9a3af46d4fd8ede0dee147f101d64
fanli/src/main/java/com/yeshi/fanli/service/inter/user/vip/UserVIPInfoService.java
@@ -22,7 +22,6 @@
    */
   public void addUserVIPInfo(UserVIPInfo info) throws UserVIPInfoException;
   /**
    * 是否为VIP
    * 
@@ -30,8 +29,7 @@
    * @return
    */
   public boolean isVIP(Long uid);
   /**
    * 在某个时间是否为VIP
    * @Title: isVIP
@@ -42,7 +40,7 @@
    * boolean 返回类型
    * @throws
    */
   public boolean isVIP(Long uid,Long time);
   public boolean isVIP(Long uid, Long time);
   /**
    * 根据UID检索
@@ -58,8 +56,7 @@
    * @param uid
    * @return
    */
   public Map<Long,Boolean> listByUids(List<Long> uid);
   public Map<Long, Boolean> listByUids(List<Long> uid);
   /**
    * 待审核列表
@@ -71,13 +68,6 @@
   public List<UserVIPInfo> listQuery(int page, int count, String key, Integer state);
   public long countQuery(String key, Integer state);
   /**
    * 超级会员与上级关系脱离
    * @param workerId
    * @param bossId
    */
   public void inviteSeparate(Long workerId, Long bossId);
   /**
    * 超级会员申请通过
@@ -101,4 +91,14 @@
    */
   public void applyVIP(Long uid) throws UserVIPInfoException;
   /**
    * 根据主键删除
    * @Title: deleteByPrimaryKey
    * @Description:
    * @param id
    * void 返回类型
    * @throws
    */
   public void deleteByPrimaryKey(Long id);
}