linwe
2024-08-09 8b7258c9427882bb1798f1502eaa35184c6e374e
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
package org.springblade.modules.article.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import org.springblade.modules.article.entity.ArticleCommentEntity;
import org.springblade.modules.article.vo.ArticleCommentVO;
 
/**
 * 通知评论表 服务类
 *
 * @author BladeX
 * @since 2023-11-08
 */
public interface IArticleCommentService extends IService<ArticleCommentEntity> {
 
    /**
     * 自定义分页
     *
     * @param page
     * @param noticeComment
     * @return
     */
    IPage<ArticleCommentVO> selectArticleCommentPage(IPage<ArticleCommentVO> page, ArticleCommentVO noticeComment);
 
 
    String saveComment(ArticleCommentEntity articleComment);
}