org.tinygroup.menutree.dto.MenuInfo Maven / Gradle / Ivy
The newest version!
package org.tinygroup.menutree.dto;
import java.util.List;
/**
* Created by wangwy11342 on 2016/10/18.
*/
public class MenuInfo {
/**
* 菜单节点列表
*/
private List menuList;
/**
* 菜单全路径(从跟节点到当前节点的路径)
*/
private List menuPaths;
public List getMenuList() {
return menuList;
}
public void setMenuList(List menuList) {
this.menuList = menuList;
}
public List getMenuPaths() {
return menuPaths;
}
public void setMenuPaths(List menuPaths) {
this.menuPaths = menuPaths;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy