From c393cc5b910855bcd7369524db5df84459e8c2da Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Mon, 29 Dec 2025 15:44:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=88=91=E7=9A=84=E6=8E=92=E5=90=8D=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../circle/other/app/command/family/FamilyLeaderboardExe.java | 1 + .../circle/other/app/command/family/FamilyMemberTop100Exe.java | 1 + 2 files changed, 2 insertions(+) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/family/FamilyLeaderboardExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/family/FamilyLeaderboardExe.java index 19f5e736..6ed91784 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/family/FamilyLeaderboardExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/family/FamilyLeaderboardExe.java @@ -56,6 +56,7 @@ public class FamilyLeaderboardExe { .map(FamilyMemberWeekExp::getFamilyMemberId) .collect(Collectors.toSet()); + userIds.add(cmd.getReqUserId()); Set hostUserIds = getHostUserIds(userIds); Map userProfileMap = userProfileGateway.mapByUserIds(userIds); diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/family/FamilyMemberTop100Exe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/family/FamilyMemberTop100Exe.java index b813c2ce..b3e9f82a 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/family/FamilyMemberTop100Exe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/family/FamilyMemberTop100Exe.java @@ -52,6 +52,7 @@ public class FamilyMemberTop100Exe { .map(FamilyMemberTotalExp::getFamilyMemberId) .collect(Collectors.toSet()); + userIds.add(cmd.getReqUserId()); Set hostUserIds = getHostUserIds(userIds); Map userProfileMap = userProfileGateway.mapByUserIds(userIds);