mitao
2024-08-16 d7dc4db8d005a58f51d21d35147317762a16373f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.ruoyi.article.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.article.controller.forepart.dto.ArticleCommentsDTO;
import com.ruoyi.article.controller.management.dto.MgtArticleCommentsQuery;
import com.ruoyi.article.controller.management.vo.MgtArticleCommentsVO;
import com.ruoyi.article.domain.ArticleComments;
import com.ruoyi.common.core.utils.page.PageDTO;
 
/**
 * <p>
 * 资讯评论回复表 服务类
 * </p>
 *
 * @author mitao
 * @since 2024-05-16
 */
public interface IArticleCommentsService extends IService<ArticleComments> {
 
    void saveMemberArticleComments(ArticleCommentsDTO articleCommentsDTO);
 
    void delMemberArticleComments(ArticleCommentsDTO articleCommentsDTO);
 
    /**
     * 查看详情-评论详情
     *
     * @param query 资讯评论回复查询对象
     * @return PageDTO<MgtArticleCommentsVO>
     */
    PageDTO<MgtArticleCommentsVO> getArticleCommentsPage(MgtArticleCommentsQuery query);
 
    void delArticleComments(Long id);
}