MenuModel.java 722 Bytes
package com.server.shiro.persistent.bean;

import java.util.List;
import java.util.Map;

/**
 * Created by yinbinhome@163.com on 2018/3/1.
 * description:
 */
public class MenuModel {
    private String name;
    private Long weight;
    private List<Map<String,String>> menus;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public List<Map<String, String>> getMenus() {
        return menus;
    }

    public void setMenus(List<Map<String, String>> menus) {
        this.menus = menus;
    }

    public Long getWeight() {
        return weight;
    }

    public void setWeight(Long weight) {
        this.weight = weight;
    }
}