From 8fee151ffae0c3818694b7318583814bf92663e2 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期五, 27 八月 2021 18:52:28 +0800 Subject: [PATCH] 聚合视频资源包调整,接入韩迷 --- src/main/java/com/yeshi/buwan/vo/video/VideoDetailVO.java | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/yeshi/buwan/vo/video/VideoDetailVO.java b/src/main/java/com/yeshi/buwan/vo/video/VideoDetailVO.java index 92c2c03..aa92e66 100644 --- a/src/main/java/com/yeshi/buwan/vo/video/VideoDetailVO.java +++ b/src/main/java/com/yeshi/buwan/vo/video/VideoDetailVO.java @@ -55,12 +55,35 @@ //鍏ㄥ睆瑙嗛骞垮憡 @Expose private boolean fullVideo; + //鍏ㄥ睆瑙嗛骞垮憡姣斾緥 + @Expose + private int fullVideoWeight; + //鎻掑睆骞垮憡姣斾緥 + @Expose + private int interstitialWeight; + public VideoAdInfo(boolean playVideo, boolean fullVideo) { this.playVideo = playVideo; this.fullVideo = fullVideo; } + public int getFullVideoWeight() { + return fullVideoWeight; + } + + public void setFullVideoWeight(int fullVideoWeight) { + this.fullVideoWeight = fullVideoWeight; + } + + public int getInterstitialWeight() { + return interstitialWeight; + } + + public void setInterstitialWeight(int interstitialWeight) { + this.interstitialWeight = interstitialWeight; + } + public boolean isPlayVideo() { return playVideo; } -- Gitblit v1.8.0