MainChannel.java
1.65 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
package com.wd.foundation.bean.mail;
import com.wd.foundation.bean.base.BaseBean;
/**
* @ProjectName: PeopleDailyEnglish
* @Package: com.people.entity.mail
* @ClassName: MainChannel
* @Description: 描述
* @Author: wd
* @CreateDate: 2023/2/13 17:54
* @UpdateUser: wd
* @UpdateDate: 2023/2/13 17:54
* @UpdateRemark: 更新说明:
* @Version: 1.0
*/
public class MainChannel extends BaseBean {
/**
* // string必须 频道ID
* */
public String channelId;
/**
* // string必须 频道名称
* */
public String channelName;
/**
* // string必须 频道类型 1:一级频道 2:二级频道
* */
public String channelLevel;
/**
* // string必须 频道样式
* */
public String channelStyle;
/**
* // string必须 对应页面ID
* */
public String pageId;
public String getChannelId() {
return channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
}
public String getChannelName() {
return channelName;
}
public void setChannelName(String channelName) {
this.channelName = channelName;
}
public String getChannelLevel() {
return channelLevel;
}
public void setChannelLevel(String channelLevel) {
this.channelLevel = channelLevel;
}
public String getChannelStyle() {
return channelStyle;
}
public void setChannelStyle(String channelStyle) {
this.channelStyle = channelStyle;
}
public String getPageId() {
return pageId;
}
public void setPageId(String pageId) {
this.pageId = pageId;
}
}