| | |
| | | //抽象方法,由子类编写具体逻辑算法 |
| | | protected abstract void updateAreaStats(Map<String, S> areaStatsMap, String key, T result); |
| | | |
| | | protected Map<String, S> getAreaStatsMap(List<T> list){ |
| | | protected Map<String, S> getAreaStatsMap(List<T> list, Boolean needDept) { |
| | | if (CollectionUtils.isEmpty(list)) { |
| | | log.info("数据为空"); |
| | | return null; |
| | |
| | | updateAreaStats(areaStatsMap, provinceKey, result); |
| | | } |
| | | // 处理公安部数据 |
| | | if (needDept) { |
| | | if (result.getDeptTag()!=null && result.getDeptTag()) { |
| | | String deptKey = ApiConstants.Dept + deptId; |
| | | updateAreaStats(areaStatsMap, deptKey, result); |
| | | } |
| | | } |
| | | } |
| | | return areaStatsMap; |
| | | } |
| | | } |