package org.springblade.modules.article.mapper;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import org.springblade.modules.article.entity.ArticleCommentEntity;
|
import org.springblade.modules.article.vo.ArticleCommentVO;
|
import java.util.List;
|
|
/**
|
* 通知评论表 Mapper 接口
|
*
|
* @author BladeX
|
* @since 2023-11-08
|
*/
|
public interface ArticleCommentMapper extends BaseMapper<ArticleCommentEntity> {
|
|
/**
|
* 自定义分页
|
*
|
* @param page
|
* @param noticeComment
|
* @return
|
*/
|
List<ArticleCommentVO> selectArticleCommentPage(IPage page, ArticleCommentVO noticeComment);
|
|
|
}
|