You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
643 B
39 lines
643 B
package com.hfkj.model;
|
|
|
|
import com.hfkj.entity.SecMenu;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 菜单结构模型
|
|
* @author hurui
|
|
*/
|
|
public class MenuTreeModel extends SecMenu {
|
|
|
|
/**
|
|
* 子菜单列表
|
|
*/
|
|
List<MenuTreeModel> childMenuList;
|
|
|
|
/**
|
|
* 菜单权限
|
|
*/
|
|
Boolean authority;
|
|
|
|
public List<MenuTreeModel> getChildMenuList() {
|
|
return childMenuList;
|
|
}
|
|
|
|
public void setChildMenuList(List<MenuTreeModel> childMenuList) {
|
|
this.childMenuList = childMenuList;
|
|
}
|
|
|
|
public Boolean getAuthority() {
|
|
return authority;
|
|
}
|
|
|
|
public void setAuthority(Boolean authority) {
|
|
this.authority = authority;
|
|
}
|
|
}
|
|
|