| | |
| | | * @return 社区列表 |
| | | */ |
| | | @Override |
| | | public R getCommunityLists() { |
| | | return R.ok(this.comActDAO.getCommunityLists()); |
| | | public R getCommunityLists(String appId) { |
| | | return R.ok(this.comActDAO.getCommunityLists(appId)); |
| | | } |
| | | |
| | | @Override |
| | |
| | | street.setCount(communityList.size()); |
| | | } |
| | | }); |
| | | // streetList = streetList.stream().sorted(Comparator.comparing(StreetAllAppletsVO::getCount).reversed()) |
| | | // .collect(Collectors.toList()); |
| | | streetList = streetList.stream().sorted(Comparator.comparing(StreetAllAppletsVO::getCount).reversed()) |
| | | .collect(Collectors.toList()); |
| | | return R.ok(streetList); |
| | | } |
| | | |