| | |
| | | import cn.lili.modules.lmk.domain.entity.ThumbsUpRecord; |
| | | import cn.lili.modules.lmk.domain.form.ThumbsUpRecordForm; |
| | | import cn.lili.modules.lmk.domain.query.ThumbsUpRecordQuery; |
| | | import cn.lili.modules.lmk.domain.vo.CollectTypeNumVO; |
| | | import cn.lili.modules.lmk.domain.vo.SimpleMyThumbsUpVO; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | */ |
| | | Result all(); |
| | | |
| | | /** |
| | | * 统计评论的点赞数 |
| | | * |
| | | * @return |
| | | */ |
| | | List<CollectTypeNumVO> countNumGroupByComment(); |
| | | |
| | | /** |
| | | * 统计视频的点赞数 |
| | | * |
| | | * @return |
| | | */ |
| | | List<CollectTypeNumVO> countNumGroupByVideo(); |
| | | |
| | | /** |
| | | * 根据视频id查询我的点赞 |
| | | * |
| | | * @param videoIds |
| | | * @return |
| | | */ |
| | | List<SimpleMyThumbsUpVO> getThumbssByVideoIds(List<String> videoIds); |
| | | } |