package cn.ksource.web.entity;
|
|
import java.io.Serializable;
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* 用户权限返回
|
* @version V1.0.0
|
* @author 杨凯
|
* @date Feb 15, 2014 11:04:20 PM
|
*/
|
public class PermissionEntity implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = -4143421920276596591L;
|
|
//一级功能列表
|
private List<Map> yjgnList;
|
|
//所有功能列表 格式为:Map<一级功能编号,List<Map<二级功能Entity,MENULIST<Map<三级功能实体>>>>>
|
private Map gnMap;
|
|
//所有权限的ID,作为map的key
|
private Map qxMap;
|
|
|
//存放所有能访问的链接Map<String,String> 链接为key 功能id为value
|
private Map<String,Map> linkMap;
|
|
|
//存放所有的二级功能列表
|
private List<Map> ejgnList;
|
|
//所有二级功能列表 格式为Map<二级功能编号,List<Map<三级功能实体>>>
|
private Map<String,List<Map>> ejgnMap;
|
|
|
public List<Map> getYjgnList() {
|
return yjgnList;
|
}
|
|
public void setYjgnList(List<Map> yjgnList) {
|
this.yjgnList = yjgnList;
|
}
|
|
public Map getGnMap() {
|
return gnMap;
|
}
|
|
public void setGnMap(Map gnMap) {
|
this.gnMap = gnMap;
|
}
|
|
public Map getQxMap() {
|
return qxMap;
|
}
|
|
public void setQxMap(Map qxMap) {
|
this.qxMap = qxMap;
|
}
|
|
|
public List<Map> getEjgnList() {
|
return ejgnList;
|
}
|
|
public void setEjgnList(List<Map> ejgnList) {
|
this.ejgnList = ejgnList;
|
}
|
|
public Map<String, List<Map>> getEjgnMap() {
|
return ejgnMap;
|
}
|
|
public void setEjgnMap(Map<String, List<Map>> ejgnMap) {
|
this.ejgnMap = ejgnMap;
|
}
|
|
public Map<String, Map> getLinkMap() {
|
return linkMap;
|
}
|
|
public void setLinkMap(Map<String, Map> linkMap) {
|
this.linkMap = linkMap;
|
}
|
|
|
|
|
|
|
}
|