| | |
| | | import org.springframework.util.CollectionUtils; |
| | | import org.springframework.util.StringUtils; |
| | | |
| | | import java.util.Collections; |
| | | import java.util.List; |
| | | import java.util.Objects; |
| | | import java.util.Optional; |
| | | import java.util.*; |
| | | import java.util.stream.Collectors; |
| | | |
| | | /** |
| | |
| | | |
| | | @Override |
| | | public List<SimpleMyCollectVO> getCollectsByVideoIds(List<String> videoIds) { |
| | | if (videoIds == null || videoIds.isEmpty()) { |
| | | return new ArrayList<>(); |
| | | } |
| | | return baseMapper.getCollectsByVideoIds(videoIds, UserContext.getCurrentUserId()); |
| | | } |
| | | |