1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.yeshi.buwan.service.inter;
|
| import com.yeshi.buwan.domain.VideoInfo;
| import com.yeshi.buwan.domain.VideoResourceMapExtraInfo;
|
| import java.util.List;
| import java.util.Map;
|
| public interface VideoResourceMapExtraInfoService {
|
|
| public Map<String, VideoResourceMapExtraInfo> listMap(List<String> videoIdList, List<Long> resourceIds);
|
|
| public List<VideoInfo> batchExtraInfo(List<VideoInfo> videoInfoList, List<Long> resourceIds);
|
|
| }
|
|