linwe
2024-05-29 c10d6358b9f014375a13821465bc978d0c0da22e
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.service.impl;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springblade.modules.article.entity.ArticleCollectEntity;
import org.springblade.modules.article.mapper.ArticleCollectMapper;
import org.springblade.modules.article.service.IArticleCollectService;
import org.springblade.modules.article.vo.ArticleCollectVO;
import org.springframework.stereotype.Service;
 
/**
 * 通知收藏表 服务实现类
 *
 * @author BladeX
 * @since 2023-11-08
 */
@Service
public class ArticleCollectServiceImpl extends ServiceImpl<ArticleCollectMapper, ArticleCollectEntity> implements IArticleCollectService {
 
    @Override
    public IPage<ArticleCollectVO> selectArticleCollectPage(IPage<ArticleCollectVO> page, ArticleCollectVO articleCollectVO) {
        return page.setRecords(baseMapper.selectArticleCollectPage(page, articleCollectVO));
    }
 
 
}