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; + /** * 备注 */