From d0936e24f99437987b8e4c18c7f27a904f98abce Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Fri, 12 Dec 2025 10:35:14 +0800 Subject: [PATCH] =?UTF-8?q?totalIncome=20=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../circle/other/app/command/bd/query/BdTeamSummaryQryExe.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/bd/query/BdTeamSummaryQryExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/bd/query/BdTeamSummaryQryExe.java index fff11003..570a0998 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/bd/query/BdTeamSummaryQryExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/bd/query/BdTeamSummaryQryExe.java @@ -99,8 +99,7 @@ public class BdTeamSummaryQryExe { summary.setAgencyTeams(agencyTeams); summary.setRechargeTeams(rechargeTeams); - // Team earnings this period = BD Teams 的 totalIncome - summary.setTeamEarningsThisPeriod(bdTeams.getTotalIncome()); + summary.setTeamEarningsThisPeriod(bdTeams.getTotalIncome().add(bdLeaderTeams.getTotalIncome()).add(agencyTeams.getTotalIncome())); return summary; }