| | |
| | | package cn.lili.modules.lmk.mapper; |
| | | |
| | | import cn.lili.modules.lmk.domain.entity.MyCollect; |
| | | import cn.lili.modules.lmk.domain.vo.SimpleMyCollectVO; |
| | | import cn.lili.modules.lmk.domain.vo.CollectTypeNumVO; |
| | | import cn.lili.modules.lmk.domain.vo.*; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import cn.lili.modules.lmk.domain.vo.MyCollectVO; |
| | | import cn.lili.modules.lmk.domain.query.MyCollectQuery; |
| | | import java.util.List; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | |
| | | * @return |
| | | */ |
| | | List<CollectTypeNumVO> countNumGroupByType(@Param("type") String type); |
| | | |
| | | |
| | | /** |
| | | * 获得我的收藏 活动 |
| | | * @param page |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | IPage getActivityCollectPage(IPage page,@Param("userId")String userId); |
| | | |
| | | /** |
| | | * 获得我的收藏 店铺 |
| | | * @param page |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | IPage getStoreCollectPage(IPage page,@Param("userId")String userId); |
| | | |
| | | /** |
| | | * 获得我的收藏 视频 |
| | | * @param page |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | IPage getVideoCollectPage(IPage page,@Param("userId")String userId); |
| | | |
| | | IPage getGoodsCollectPage(IPage page,@Param("userId")String type); |
| | | } |