AdvsRuleBean.ets
956 Bytes
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/**
* @Description: 挂角广告数据
* @Author:
* @Email: liyubing@wondertek.com.cn
* @CreateDate:
* @UpdateRemark: 更新说明
* @Version: 1.0
*/
import { AdvertsBean } from './AdvertsBean';
import { CompAdvMatInfoBean, CompAdvSlotInfoBean } from './CompAdvInfoBean';
export interface AdvRuleBean {
/**
* 广告投放位编码
*/
pos: string;
/**
* 广告展示顺序,0:随机展示;1列表循环
*/
displayMode:number
/**
* 每间隔刷新n次展示广告
*/
refreshFrequency:number
/**
* 广告信息集合
*/
advert:AdvertsBean;
}
/**
* 广告组件数据
*/
export interface CompAdvBean{
/**
* 广告订单id
*/
id:string;
/**
* 投放开始时间
*/
startTime:number;
/**
* 投放结束时间
*/
endTime:number;
/**
* 信息流广告素材
*/
matInfo:CompAdvMatInfoBean
/**
* 信息流广告位
*/
slotInfo:CompAdvSlotInfoBean
}