首页增加配置统计列表

This commit is contained in:
duandongmei
2018-07-11 16:15:23 +08:00
parent 23c2da6dee
commit 89ec630a33
12 changed files with 1411 additions and 696 deletions

View File

@@ -202,6 +202,22 @@ public class DictUtils {
}
return dictList;
}
/**
* 功能业务字典,获取相应功能菜单对应的业务信息
* @param functionId
* @return
*/
public static List<FunctionServiceDict> getFunctionServiceDictList(){
List<FunctionServiceDict> allDictList = (List<FunctionServiceDict>)CacheUtils.get(Constants.CACHE_FUNCTION_SERVICE_DICT);
List<FunctionServiceDict> dictList = new ArrayList();
if(StringUtil.isEmpty(allDictList)){
FunctionServiceDict entity = new FunctionServiceDict();
allDictList = functionServiceDictDao.getList(entity);
CacheUtils.put(Constants.CACHE_FUNCTION_SERVICE_DICT, allDictList);
}
return allDictList;
}
/**
* 功能配置域字典,获取相应功能菜单对应的配置域信息
* @param functionId