BottomNavBean.java 1.32 KB
/*
 * 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;
    }
}