rentaiming
2024-06-03 42f795894094c4d9541381da31357d4bbf93fea0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.article.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.article.controller.forepart.dto.ArticleCommentsDTO;
import com.ruoyi.article.domain.ArticleComments;
 
/**
 * <p>
 * 资讯评论回复表 服务类
 * </p>
 *
 * @author mitao
 * @since 2024-05-16
 */
public interface IArticleCommentsService extends IService<ArticleComments> {
 
    void saveMemberArticleComments(ArticleCommentsDTO articleCommentsDTO);
 
    void delMemberArticleComments(ArticleCommentsDTO articleCommentsDTO);
 
}