package com.ruoyi.article.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.ruoyi.article.domain.pojo.ArticleComments;
|
import com.ruoyi.article.dto.ArticleCommentsDTO;
|
|
/**
|
* <p>
|
* 资讯评论回复表 服务类
|
* </p>
|
*
|
* @author mitao
|
* @since 2024-05-16
|
*/
|
public interface IArticleCommentsService extends IService<ArticleComments> {
|
|
void saveMemberArticleComments(ArticleCommentsDTO articleCommentsDTO);
|
|
void delMemberArticleComments(ArticleCommentsDTO articleCommentsDTO);
|
|
}
|