From f788607ff771a47bc60d6a86e00b3433c40f3d2c Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期五, 24 九月 2021 15:22:03 +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