1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package org.springblade.jfpt.article.service;
|
| import com.baomidou.mybatisplus.core.metadata.IPage;
| import com.baomidou.mybatisplus.extension.service.IService;
| import org.springblade.jfpt.article.entity.Article;
|
| /**
| * @author zhongrj
| * 资讯服务接口层
| */
| public interface ArticleService extends IService<Article> {
|
| /**
| * 查询资讯分页信息
| * @param page
| * @param article 资讯对象
| * @return
| */
| IPage<Article> selectArticlePage(IPage<Article> page,Article article);
| }
|
|