From 7878cb30df6fc76a4e0f9154a76ddf66b322379e Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Wed, 15 Oct 2025 15:03:39 +0800 Subject: [PATCH] =?UTF-8?q?invite-message-own=20=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../other/app/command/team/query/BdInviteMessageQryExe.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/team/query/BdInviteMessageQryExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/team/query/BdInviteMessageQryExe.java index 1890230f..c4d46f8f 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/team/query/BdInviteMessageQryExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/team/query/BdInviteMessageQryExe.java @@ -64,12 +64,12 @@ public class BdInviteMessageQryExe { Map userProfileMap = userProfileAppConvertor.toMapUserProfileDTO( userProfileGateway.mapByUserIds( - messages.stream().map(BdInviteAgentMessage::getUserId).collect(Collectors.toSet()) + messages.stream().map(BdInviteAgentMessage::getInviteUserId).collect(Collectors.toSet()) ) ); return messages.stream().map(msg -> new BdInviteMessageCO() .setId(msg.getId()) - .setUserProfile(Optional.ofNullable(userProfileMap.get(msg.getUserId())) + .setUserProfile(Optional.ofNullable(userProfileMap.get(msg.getInviteUserId())) .map(userProfile -> { userProfile.setAccount(userProfile.actualAccount()); return userProfile;