| | |
| | | package cn.lili.modules.lmk.service.impl; |
| | | |
| | | import cn.lili.modules.lmk.domain.entity.VideoTagRef; |
| | | import cn.lili.modules.lmk.domain.vo.SimpleVideoTagVO; |
| | | import cn.lili.modules.lmk.mapper.VideoTagRefMapper; |
| | | import cn.lili.modules.lmk.service.VideoTagRefService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 视频标签中间表 服务实现类 |
| | |
| | | private final VideoTagRefMapper videoTagRefMapper; |
| | | |
| | | |
| | | @Override |
| | | public List<SimpleVideoTagVO> getTagsByVideoIds(List<String> videoIds) { |
| | | return baseMapper.getTagsByVideoIds(videoIds); |
| | | } |
| | | } |