|
@@ -12,6 +12,7 @@ public class ArticleVideoPoolSourceVO {
|
|
|
private Integer flowPoolLevel;
|
|
|
private String sourceId;
|
|
|
private String title;
|
|
|
+ private String coverUrl;
|
|
|
|
|
|
public static List<ArticleVideoPoolSourceVO> convertFromPublishSingleVideoSource(List<PublishSingleVideoSource> list) {
|
|
|
return list.stream().map(publishSingleVideoSource -> {
|
|
@@ -20,6 +21,7 @@ public class ArticleVideoPoolSourceVO {
|
|
|
articleVideoPoolSourceVO.setFlowPoolLevel(publishSingleVideoSource.getFlowPoolLevel());
|
|
|
articleVideoPoolSourceVO.setSourceId(publishSingleVideoSource.getContentTraceId());
|
|
|
articleVideoPoolSourceVO.setTitle(publishSingleVideoSource.getArticleTitle());
|
|
|
+ articleVideoPoolSourceVO.setCoverUrl(publishSingleVideoSource.getCoverUrl());
|
|
|
return articleVideoPoolSourceVO;
|
|
|
}).collect(Collectors.toList());
|
|
|
}
|