admin
2024-01-26 c2d382d99ca506932985d1843d4371d6ed0203ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.weikou.beibeivideo.entity.ad;
 
import com.bytedance.sdk.openadsdk.TTRewardVideoAd;
 
//信息流原生广告容器
public class RewardVideoAdContainer {
 
    private TTRewardVideoAd csj;
 
    public RewardVideoAdContainer(TTRewardVideoAd csj) {
        this.csj = csj;
    }
 
    public TTRewardVideoAd getCsj() {
        return csj;
    }
 
    public void setCsj(TTRewardVideoAd csj) {
        this.csj = csj;
    }
 
}