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; });