admin
2020-05-06 24a8d17e007545f7426c48352109aa1a9c6587ee
fanli/src/main/java/com/yeshi/fanli/service/inter/user/invite/ThreeSaleSerivce.java
@@ -28,7 +28,6 @@
    */
   void effective(UserInfo worker);
   /**
    * 一级查询
    * 
@@ -70,8 +69,6 @@
   public List<ThreeSale> listSuperiorQuery(long start, int count, Integer state, Long uid);
   public long countSuperiorQuery(Integer state, Long uid);
   /**
    * 前端查询一级队员
@@ -130,7 +127,6 @@
    */
   public int getSuccessRelationshipNum(Long uid);
   /**
    * 根据邀请者查询关系
    * 
@@ -147,22 +143,21 @@
    * @throws ThreeSaleException
    */
   public void bindInviteRelationship(Long workerId, Long bossId) throws ThreeSaleException;
   /**
   * 根据下级查找对象
    * @param workerId
    * @return
    */
   public ThreeSale selectByWorkerId(Long workerId);
   /**
    * 查询最近一条数据(根据下级用户ID与状态)
    * @param workerId
    * @param state
    * @return
    */
   public ThreeSale selectLatestByWorkerIdAndState(Long workerId,int state);
   public ThreeSale selectLatestByWorkerIdAndState(Long workerId, int state);
   /**
    * 时间段呢 邀请成功信息
@@ -193,7 +188,6 @@
    */
   public List<ThreeSale> listSecondTeam(long start, int count, Long uid);
   /**
    * 统计直接粉丝数量
    * 
@@ -208,7 +202,7 @@
    * @return
    */
   public long countSecondTeam(Long uid);
   /**
    * 查询邀请关系 时间筛选
    * @param workerId 下级id
@@ -224,7 +218,6 @@
    */
   public void inviteSeparate(Long workerId, Long bossId);
   /*
    * 该队员 在队中排第几
    */
@@ -245,8 +238,7 @@
    * @return
    */
   public List<ThreeSale> getValidWorkerIdsByTime(Long bossId, long limitTime);
   /**
    * 获取上几级邀请人
    * @Title: getMyBossDeepList
@@ -257,9 +249,8 @@
    * List<ThreeSale> 返回类型
    * @throws
    */
   public List<ThreeSale> getMyBossDeepList(Long uid,int deep);
   public List<ThreeSale> getMyBossDeepList(Long uid, int deep);
   /**
    * 获取上级列表
    * @Title: getMyBossDeepList
@@ -271,4 +262,15 @@
    */
   public List<ThreeSale> getMyBossDeepList(Long uid);
   /**
    * 获取用户的顶级boss
    * @Title: getTopBoss
    * @Description:
    * @param uid
    * @return
    * Long 返回类型
    * @throws
    */
   public Long getTopBoss(Long uid);
}