|
@@ -58,8 +58,11 @@ public class AppUserLiveDividedTask {
|
|
|
|
|
|
List<AppUserAgent> liveRateList = new ArrayList<>();
|
|
List<AppUserAgent> liveRateList = new ArrayList<>();
|
|
|
|
|
|
|
|
+ // 迭代次数记录
|
|
|
|
+ int num = 0;
|
|
|
|
+
|
|
// 获取直播分成比例
|
|
// 获取直播分成比例
|
|
- getLiveRate(item.getUserId(), liveRateList);
|
|
|
|
|
|
+ getLiveRate(item.getUserId(), liveRateList, num);
|
|
|
|
|
|
if(liveRateList.isEmpty()){
|
|
if(liveRateList.isEmpty()){
|
|
continue;
|
|
continue;
|
|
@@ -73,7 +76,7 @@ public class AppUserLiveDividedTask {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- private void getLiveRate(Long userId, List<AppUserAgent> liveRateList){
|
|
|
|
|
|
+ private void getLiveRate(Long userId, List<AppUserAgent> liveRateList, int num){
|
|
|
|
|
|
AppUserAgent userIdObject = new AppUserAgent();
|
|
AppUserAgent userIdObject = new AppUserAgent();
|
|
userIdObject.setUserId(userId);
|
|
userIdObject.setUserId(userId);
|
|
@@ -89,7 +92,12 @@ public class AppUserLiveDividedTask {
|
|
}
|
|
}
|
|
liveRateList.add(userAgent);
|
|
liveRateList.add(userAgent);
|
|
|
|
|
|
- getLiveRate(userAgent.getPid(), liveRateList);
|
|
|
|
|
|
+ // 只需要获取直属上级
|
|
|
|
+ if(num == 1){
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ num ++;
|
|
|
|
+ getLiveRate(userAgent.getPid(), liveRateList, num);
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|