From 855921d253a4854d4fb78b83bfcf7c6e93b3f68d Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期三, 29 五月 2024 19:43:50 +0800
Subject: [PATCH] 1.提交【管理后台】团购、拍卖商品立即结束退款处理 2.提交【管理后台】拍卖场管理部分接口
---
ruoyi-modules/ruoyi-article/src/main/java/com/ruoyi/article/service/impl/ArticleCommentsServiceImpl.java | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/ruoyi-modules/ruoyi-article/src/main/java/com/ruoyi/article/service/impl/ArticleCommentsServiceImpl.java b/ruoyi-modules/ruoyi-article/src/main/java/com/ruoyi/article/service/impl/ArticleCommentsServiceImpl.java
index 4c53c83..3e82b6e 100644
--- a/ruoyi-modules/ruoyi-article/src/main/java/com/ruoyi/article/service/impl/ArticleCommentsServiceImpl.java
+++ b/ruoyi-modules/ruoyi-article/src/main/java/com/ruoyi/article/service/impl/ArticleCommentsServiceImpl.java
@@ -1,10 +1,12 @@
package com.ruoyi.article.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.ruoyi.article.domain.Article;
import com.ruoyi.article.domain.ArticleComments;
import com.ruoyi.article.dto.ArticleCommentsDTO;
import com.ruoyi.article.mapper.ArticleCommentsMapper;
import com.ruoyi.article.service.IArticleCommentsService;
+import com.ruoyi.article.service.IArticleService;
import com.ruoyi.common.core.exception.ServiceException;
import org.springframework.stereotype.Service;
@@ -23,6 +25,9 @@
ServiceImpl<ArticleCommentsMapper, ArticleComments> implements IArticleCommentsService {
@Resource
private IArticleCommentsService articleCommentsService;
+
+ @Resource
+ private IArticleService articleService;
@Override
public void saveMemberArticleComments(ArticleCommentsDTO articleCommentsDTO) {
@@ -46,11 +51,20 @@
articleComments.setBmemberId(articleCommentsDTO.getBmemberId());
articleComments.setType(2);
}
+ Article byId = articleService.getById(articleCommentsDTO.getArticleId());
+ byId.setCommentCount(byId.getCommentCount()+1);
+ articleService.saveOrUpdate(byId);
articleCommentsService.saveOrUpdate(articleComments);
}
@Override
public void delMemberArticleComments(ArticleCommentsDTO articleCommentsDTO) {
+ ArticleComments byId1 = articleCommentsService.getById(articleCommentsDTO.getId());
+
+ Article byId = articleService.getById(byId1.getArticleId());
+ byId.setCommentCount(byId.getCommentCount()-1);
+ articleService.saveOrUpdate(byId);
+
articleCommentsService.removeById(articleCommentsDTO.getId());
}
}
--
Gitblit v1.7.1