| | |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.article.entity.Article; |
| | | import org.springblade.modules.article.vo.ArticleVo; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhongrj |
| | |
| | | * @return |
| | | */ |
| | | IPage<Article> selectArticlePage(IPage<Article> page, ArticleVo article); |
| | | IPage<Article> selectArticleG(IPage<Article> page, ArticleVo article); |
| | | |
| | | /** |
| | | * 查询资讯分页信息(角色权限) |
| | |
| | | */ |
| | | IPage<Article> pageDate(IPage<Article> page, ArticleVo article); |
| | | |
| | | IPage<Article> pageWords(IPage<Article> page, ArticleVo article); |
| | | |
| | | IPage<Article> pageCollectList(IPage<Article> page, ArticleVo article); |
| | | |
| | | /** |