CompAdvSlotInfoBean.java
939 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
package com.wd.foundation.bean.adv;
import com.wd.foundation.bean.base.BaseBean;
/**
* @Description: 信息流广告位
* @Author: Li Yubing
* @Email: liyubing@wondert.com.cn
* @CreateDate: 2023/10/26 14:05
* @Version: 1.0
*/
public class CompAdvSlotInfoBean extends BaseBean {
/**
* 组件id
*/
private String compId;
/**
* 广告位位置 从1开始
*/
private int position;
/**
* 频道id
*/
private String channelId;
public String getCompId() {
return compId;
}
public void setCompId(String compId) {
this.compId = compId;
}
public int getPosition() {
return position;
}
public void setPosition(int position) {
this.position = position;
}
public String getChannelId() {
return channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
}
}