| File was renamed from src/main/java/org/springblade/modules/notice/service/INoticeCollectService.java |
| | |
| | | * this software without specific prior written permission. |
| | | * Author: Chill 庄骞 (smallchill@163.com) |
| | | */ |
| | | package org.springblade.modules.notice.service; |
| | | package org.springblade.modules.article.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.notice.entity.NoticeCollectEntity; |
| | | import org.springblade.modules.notice.vo.NoticeCollectVO; |
| | | import org.springblade.core.mp.base.BaseService; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.article.entity.ArticleCollectEntity; |
| | | import org.springblade.modules.article.vo.ArticleCollectVO; |
| | | |
| | | /** |
| | | * 通知收藏表 服务类 |
| | |
| | | * @author BladeX |
| | | * @since 2023-11-08 |
| | | */ |
| | | public interface INoticeCollectService extends IService<NoticeCollectEntity> { |
| | | public interface IArticleCollectService extends IService<ArticleCollectEntity> { |
| | | |
| | | /** |
| | | * 自定义分页 |
| | |
| | | * @param noticeCollect |
| | | * @return |
| | | */ |
| | | IPage<NoticeCollectVO> selectNoticeCollectPage(IPage<NoticeCollectVO> page, NoticeCollectVO noticeCollect); |
| | | IPage<ArticleCollectVO> selectArticleCollectPage(IPage<ArticleCollectVO> page, ArticleCollectVO noticeCollect); |
| | | |
| | | |
| | | } |