| File was renamed from src/main/java/org/springblade/modules/notice/mapper/NoticeCollectMapper.java |
| | |
| | | * this software without specific prior written permission. |
| | | * Author: Chill 庄骞 (smallchill@163.com) |
| | | */ |
| | | package org.springblade.modules.notice.mapper; |
| | | package org.springblade.modules.article.mapper; |
| | | |
| | | import org.springblade.modules.notice.entity.NoticeCollectEntity; |
| | | import org.springblade.modules.notice.vo.NoticeCollectVO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.springblade.modules.article.entity.ArticleCollectEntity; |
| | | import org.springblade.modules.article.vo.ArticleCollectVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | * @author BladeX |
| | | * @since 2023-11-08 |
| | | */ |
| | | public interface NoticeCollectMapper extends BaseMapper<NoticeCollectEntity> { |
| | | public interface ArticleCollectMapper extends BaseMapper<ArticleCollectEntity> { |
| | | |
| | | /** |
| | | * 自定义分页 |
| | |
| | | * @param noticeCollect |
| | | * @return |
| | | */ |
| | | List<NoticeCollectVO> selectNoticeCollectPage(IPage page, NoticeCollectVO noticeCollect); |
| | | List<ArticleCollectVO> selectArticleCollectPage(IPage page, ArticleCollectVO noticeCollect); |
| | | |
| | | |
| | | } |