diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/query/WeekKingQueenUserContributeQueryExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/query/WeekKingQueenUserContributeQueryExe.java index beda58eb..8b8fbc31 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/query/WeekKingQueenUserContributeQueryExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/query/WeekKingQueenUserContributeQueryExe.java @@ -34,6 +34,8 @@ public class WeekKingQueenUserContributeQueryExe { UserProfile baseInfo = userProfileGateway.getByUserId(cmd.getReqUserId()); return new UserCharmWealthContributeCO() .setUserId(baseInfo.getId()) + .setUserSex(baseInfo.getUserSex()) + .setAccount(baseInfo.getAccount()) .setUserAvatar(baseInfo.getUserAvatar()) .setUserNickname(baseInfo.getUserNickname()) .setCharmQuantity(getContribute(cmd, KingQueenType.CHARM)) diff --git a/rc-service/rc-service-other/other-client/src/main/java/com/red/circle/other/app/dto/clientobject/activity/UserCharmWealthContributeCO.java b/rc-service/rc-service-other/other-client/src/main/java/com/red/circle/other/app/dto/clientobject/activity/UserCharmWealthContributeCO.java index 5692f20e..9ae03357 100644 --- a/rc-service/rc-service-other/other-client/src/main/java/com/red/circle/other/app/dto/clientobject/activity/UserCharmWealthContributeCO.java +++ b/rc-service/rc-service-other/other-client/src/main/java/com/red/circle/other/app/dto/clientobject/activity/UserCharmWealthContributeCO.java @@ -23,6 +23,16 @@ public class UserCharmWealthContributeCO extends ClientObject { @JsonSerialize(using = ToStringSerializer.class) private Long userId; + /** + * 用户性别:0 女,1 男. + */ + private Integer userSex; + + /** + * 账号. + */ + private String account; + /** * 用户头像. */