PageTopNavBean.java
1.08 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
package com.wd.foundation.bean.response;
import java.util.List;
import com.wd.foundation.bean.base.BaseBean;
import com.wd.foundation.bean.custom.comp.NavCompBean;
/**
* 首页顶部导航
*
* @author liyubing
* @version [V1.0.0, 2022/7/13]
* @since V1.0.0
*/
public class PageTopNavBean extends BaseBean {
private String id;
/**
* 导航栏栏目组件
*/
private List<NavCompBean> bottomNavCompList;
/**
* 频道列表
*/
private List<ChannelBean> topNavChannelList;
public List<NavCompBean> getBottomNavCompList() {
return bottomNavCompList;
}
public void setBottomNavCompList(List<NavCompBean> bottomNavCompList) {
this.bottomNavCompList = bottomNavCompList;
}
public List<ChannelBean> getTopNavChannelList() {
return topNavChannelList;
}
public void setTopNavChannelList(List<ChannelBean> topNavChannelList) {
this.topNavChannelList = topNavChannelList;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}