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()) {