linwe
2023-12-23 55d677758efadb6d42e6d4e595cecc2c50c20d5a
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
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);
 
 
}