|
|
@ -2878,9 +2878,10 @@ public class ProjectServiceImpl extends BaseServiceImpl<ProjectDao, ProjectEntit |
|
|
|
orgList = projectCountByGrid.getData(); |
|
|
|
} |
|
|
|
} |
|
|
|
if (CollectionUtils.isNotEmpty(orgList)){ |
|
|
|
result.setList(orgList); |
|
|
|
if (CollectionUtils.isEmpty(orgList)){ |
|
|
|
return result; |
|
|
|
} |
|
|
|
result.setList(orgList); |
|
|
|
List<Integer> allCount = orgList.stream().map(m -> m.getCount()).collect(Collectors.toList()); |
|
|
|
Integer max = Collections.max(allCount); |
|
|
|
Integer min = Collections.min(allCount); |
|
|
|