|
|
@@ -1270,6 +1270,17 @@ public class ContentPlatformPlanServiceImpl implements ContentPlatformPlanServic
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public Page<VideoContentItemVO> getVectorVideoContentList(VideoContentListParam param) {
|
|
|
+ if (StringUtils.hasText(param.getTitle())) {
|
|
|
+ return getVideoContentListByTitleV2(param);
|
|
|
+ }
|
|
|
+ Page<VideoContentItemVO> result = new Page<>(param.getPageNum(), param.getPageSize());
|
|
|
+ result.setTotalSize(0);
|
|
|
+ result.setObjs(new ArrayList<>());
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
private List<VideoContentItemVO> buildDemandVideoContentItemVOList(List<ContentPlatformDemandVideo> videoList) {
|
|
|
if (CollectionUtils.isEmpty(videoList)) {
|
|
|
return new ArrayList<>();
|