GreyBottomNavBean.java
918 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
package com.wd.foundation.bean.custom;
import java.util.List;
import com.wd.foundation.bean.custom.item.ItemBean;
/**
* @Description: 灰度皮肤
* @Author: Li Yubing
* @Email: liyubing@wondert.com.cn
* @CreateDate: 2023/11/15 19:07
* @Version: 1.0
*/
public class GreyBottomNavBean extends ItemBean {
/**
* 统一客户端根据登陆用户userid,匹配灰度用户列表
*/
private List<String> greyUserList;
/**
* 灰度用户肤色
*/
private List<MenuBean> bottomNavList;
public List<String> getGreyUserList() {
return greyUserList;
}
public void setGreyUserList(List<String> greyUserList) {
this.greyUserList = greyUserList;
}
public List<MenuBean> getBottomNavList() {
return bottomNavList;
}
public void setBottomNavList(List<MenuBean> bottomNavList) {
this.bottomNavList = bottomNavList;
}
}