zhangchen 1 vecka sedan
förälder
incheckning
9bcbb621d9

+ 4 - 1
alien-store/src/main/java/shop/alien/store/service/StoreCommentAppealSupplementJobService.java

@@ -198,7 +198,10 @@ public class StoreCommentAppealSupplementJobService {
             contextJson.put("message", message);
             contextJson.put("appealId", appeal.getId());
             contextJson.put("commentId", appeal.getCommentId());
-            insertSystemNotice(receiverId, appeal.getId(), "商家申诉通知", contextJson.toJSONString());
+            String title = merchantWins
+                    ? "您的评价已被删除"
+                    : "商家申诉已被驳回";
+            insertSystemNotice(receiverId, appeal.getId(), title, contextJson.toJSONString());
             log.info("【用户补充申诉】用户申诉结果通知发送成功,appealId={}, merchantWins={}", appeal.getId(), merchantWins);
         } catch (Exception e) {
             log.error("【用户补充申诉】用户申诉结果通知发送失败,appealId={}", appeal.getId(), e);