GreyBottomNavBean.java 918 Bytes

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;
    }
}