首页来函业务类型统计功能

修改部分页面十六进制校验不生效bug
更换logo
This commit is contained in:
duandongmei
2018-08-10 16:24:07 +08:00
parent 61ad81687c
commit 96fa1eedb9
17 changed files with 507 additions and 94 deletions

View File

@@ -238,4 +238,20 @@ public class DictUtils {
}
return dictList;
}
/**
* 功能配置域字典,获取相应功能菜单对应的配置域信息
* @param functionId
* @return
*/
public static List<FunctionRegionDict> getFunctionRegionDictList(){
List<FunctionRegionDict> allDictList = (List<FunctionRegionDict>)CacheUtils.get(Constants.CACHE_FUNCTION_REGION_DICT);
List<FunctionRegionDict> dictList = new ArrayList();
if(StringUtil.isEmpty(allDictList)){
FunctionRegionDict entity = new FunctionRegionDict();
allDictList = functionRegionDictDao.getList(entity);
CacheUtils.put(Constants.CACHE_FUNCTION_REGION_DICT, allDictList);
}
return allDictList;
}
}