From 0a4aee700a60c4b28248f3d1a7f4f91376b68492 Mon Sep 17 00:00:00 2001 From: 101captain <237651143@qq.com> Date: 星期一, 01 八月 2022 14:46:47 +0800 Subject: [PATCH] Merge branch 'haucheng_panzhihua' into shuangzheng2 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActServiceImpl.java | 10 ++++------ 1 files changed, 4 insertions(+), 6 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActServiceImpl.java index e7a3780..5c4f4f1 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActServiceImpl.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActServiceImpl.java @@ -1,9 +1,7 @@ package com.panzhihua.service_community.service.impl; import java.util.ArrayList; -import java.util.Comparator; import java.util.List; -import java.util.stream.Collectors; import javax.annotation.Resource; @@ -240,9 +238,9 @@ * @return 社区列表 */ @Override - public R getCommunityAllList(String areaCode) { + public R getCommunityAllList(String appId) { // 查询街道列表 - List<StreetAllAppletsVO> streetList = this.comActDAO.getStreetList(areaCode); + List<StreetAllAppletsVO> streetList = this.comActDAO.getStreetList(appId); streetList.forEach(street -> { // 查询街道下社区列表 List<CommunitySwitchAllAppletsVO> communityList = @@ -265,8 +263,8 @@ * @return 社区列表 */ @Override - public R communitySwitchSearchList(String name,String areaCode) { - return R.ok(this.comActDAO.getCommunityListByName(name,areaCode)); + public R communitySwitchSearchList(String name,String appId) { + return R.ok(this.comActDAO.getCommunityListByName(name,appId)); } /** -- Gitblit v1.7.1