BottomNavBean.java
1.32 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
/*
* Copyright (c) Wondertek Technologies Co., Ltd. 2021-2022. All rights reserved.
*/
package com.wd.foundation.bean.response;
import com.wd.foundation.bean.base.BaseBean;
import com.wd.foundation.bean.custom.MenuBean;
import java.util.List;
/**
* 首页底部导航栏数据<BR>
*
* @author zhangbo
* @version [V1.0.0, 2022/3/14]
* @since V1.0.0
*/
public class BottomNavBean extends BaseBean {
/**
* 0522新增 底部导航背景色(信息流频道)
*/
private String backgroundColor;
/**
* 0522新增 底部导航背景色(信息流频道)
*/
private String immersiveBackgroundColor;
/**
* 底部导航栏有序列表
* */
private List<MenuBean> bottomNavList;
public List<MenuBean> getMenus() {
return bottomNavList;
}
public void setMenus(List<MenuBean> menus) {
this.bottomNavList = menus;
}
public String getBackgroundColor() {
return backgroundColor;
}
public void setBackgroundColor(String backgroundColor) {
this.backgroundColor = backgroundColor;
}
public String getImmersiveBackgroundColor() {
return immersiveBackgroundColor;
}
public void setImmersiveBackgroundColor(String immersiveBackgroundColor) {
this.immersiveBackgroundColor = immersiveBackgroundColor;
}
}