From c7ff94feb093994799b3e8bab2c940fa2ed70210 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Thu, 19 Mar 2026 10:22:24 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E8=A1=8C=E6=A6=9C=20=E9=9A=90?= =?UTF-8?q?=E8=BA=AB=E6=8A=A5=E9=94=99=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../other/app/command/activity/query/RankingListQryExe.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/query/RankingListQryExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/query/RankingListQryExe.java index 6741f4e8..54da95d4 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/query/RankingListQryExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/query/RankingListQryExe.java @@ -152,7 +152,7 @@ public class RankingListQryExe { // 从排行榜列表中查找当前用户 Optional userInList = rankingList.stream() - .filter(record -> record.getUserId().equals(cmd.getReqUserId())) + .filter(record -> cmd.getReqUserId().equals(record.getUserId())) .findFirst(); if (userInList.isPresent()) {