From 8668ecaede2cb2d3d3abe11a0976613bfe0407b8 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Mon, 2 Feb 2026 15:58:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A8=E6=80=81=E5=88=97=E8=A1=A8=E5=92=8C?= =?UTF-8?q?=E4=BF=9D=E5=AD=98=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../circle/other/app/command/dynamic/DynamicReportCmdExe.java | 4 ++-- .../other/app/command/dynamic/query/DynamicMyQryExe.java | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/dynamic/DynamicReportCmdExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/dynamic/DynamicReportCmdExe.java index 42c950a1..1054aad5 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/dynamic/DynamicReportCmdExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/dynamic/DynamicReportCmdExe.java @@ -32,8 +32,8 @@ public class DynamicReportCmdExe { ResponseAssert.notNull(DynamicErrorCode.CONTENT_IS_NULL, content); ResponseAssert.isFalse(DynamicErrorCode.CONTENT_DELETE, content.getDel()); - ResponseAssert.isFalse(DynamicErrorCode.REPEAT_COMPLAINT_ERROR, - dynamicReportService.exist(cmd.getDynamicContentId(), cmd.getReqUserId())); +// ResponseAssert.isFalse(DynamicErrorCode.REPEAT_COMPLAINT_ERROR, +// dynamicReportService.exist(cmd.getDynamicContentId(), cmd.getReqUserId())); dynamicReportService.save(new DynamicReport() .setApprovalStatus(0) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/dynamic/query/DynamicMyQryExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/dynamic/query/DynamicMyQryExe.java index 8d947513..b82936fa 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/dynamic/query/DynamicMyQryExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/dynamic/query/DynamicMyQryExe.java @@ -87,6 +87,7 @@ public class DynamicMyQryExe { result.setLikeStrQuantity(NumUtils.formatLong(likeQuantityMap.get(dynamic.getId()))); result.setLike(Optional.ofNullable(likeMap.get(dynamic.getId())).orElse(Boolean.FALSE)); result.setCommentStrQuantity(NumUtils.formatInt(commentQuantityMap.get(dynamic.getId()))); + result.setUserProfile(userProfileAppConvertor.convertToSimpleProfile(user)); return result; });