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);
|
|
|
}
|