admin
2025-06-16 7f0825f8195a522ed7e8bcdb6347f3a719e06c74
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.weikou.beibeivideo.entity.vo;
 
import com.google.gson.annotations.Expose;
 
public class VideoDetailAdInfoVO {
    //播放前贴广告
    @Expose
    private boolean playVideo;
    //全屏视频广告
    @Expose
    private boolean fullVideo;
 
    //全屏视频广告比例
    @Expose
    private int fullVideoWeight;
 
    //插屏广告比例
    @Expose
    private int interstitialWeight;
 
    public boolean isPlayVideo() {
        return playVideo;
    }
 
    public void setPlayVideo(boolean playVideo) {
        this.playVideo = playVideo;
    }
 
    public boolean isFullVideo() {
        return fullVideo;
    }
 
    public void setFullVideo(boolean fullVideo) {
        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;
    }
}