ruoyi-modules/ruoyi-article/src/main/java/com/ruoyi/article/service/IArticleCommentsService.java
@@ -2,6 +2,7 @@ import com.baomidou.mybatisplus.extension.service.IService; import com.ruoyi.article.domain.pojo.ArticleComments; import com.ruoyi.article.dto.ArticleCommentsDTO; /** * <p> @@ -13,4 +14,8 @@ */ public interface IArticleCommentsService extends IService<ArticleComments> { void saveMemberArticleComments(ArticleCommentsDTO articleCommentsDTO); void delMemberArticleComments(ArticleCommentsDTO articleCommentsDTO); }