首页增加配置统计列表
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user