From 0cd3a9eb83eb6a839144fb307cce3902cf47104c Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Thu, 6 Nov 2025 15:57:37 +0800 Subject: [PATCH] =?UTF-8?q?=E9=81=93=E5=85=B7=E5=88=B8=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0receiverAccount?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../app/command/propcoupon/query/PropCouponRecordQryExe.java | 1 + .../other/app/dto/clientobject/PropCouponRecordCO.java | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/propcoupon/query/PropCouponRecordQryExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/propcoupon/query/PropCouponRecordQryExe.java index 0d50e71f..82c6f39f 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/propcoupon/query/PropCouponRecordQryExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/propcoupon/query/PropCouponRecordQryExe.java @@ -78,6 +78,7 @@ public class PropCouponRecordQryExe { if (record.getReceiverId() != null && finalReceiverMap.containsKey(record.getReceiverId())) { UserProfileDTO receiver = finalReceiverMap.get(record.getReceiverId()); co.setReceiverNickname(receiver.getUserNickname()); + co.setReceiverAccount(receiver.getAccount()); } return co; }) diff --git a/rc-service/rc-service-other/other-client/src/main/java/com/red/circle/other/app/dto/clientobject/PropCouponRecordCO.java b/rc-service/rc-service-other/other-client/src/main/java/com/red/circle/other/app/dto/clientobject/PropCouponRecordCO.java index 8668550b..ffe673d3 100644 --- a/rc-service/rc-service-other/other-client/src/main/java/com/red/circle/other/app/dto/clientobject/PropCouponRecordCO.java +++ b/rc-service/rc-service-other/other-client/src/main/java/com/red/circle/other/app/dto/clientobject/PropCouponRecordCO.java @@ -76,6 +76,11 @@ public class PropCouponRecordCO { */ private String receiverNickname; + /** + * 接收人账号 + */ + private String receiverAccount; + /** * 备注 */