| | |
| | | package cn.lili.modules.lmk.service.impl; |
| | | |
| | | import cn.hutool.core.util.ArrayUtil; |
| | | import cn.lili.modules.lmk.domain.entity.VideoTagRef; |
| | | import cn.lili.modules.lmk.domain.vo.SimpleVideoTagVO; |
| | | import cn.lili.modules.lmk.mapper.VideoTagRefMapper; |
| | |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | |
| | | @Override |
| | | public List<SimpleVideoTagVO> getTagsByVideoIds(List<String> videoIds) { |
| | | if (videoIds == null || videoIds.isEmpty()) { |
| | | return new ArrayList<>(); |
| | | } |
| | | return baseMapper.getTagsByVideoIds(videoIds); |
| | | } |
| | | } |