From c02e4e8ebd88f2d277935111ca16f2119adbac23 Mon Sep 17 00:00:00 2001 From: 101captain <237651143@qq.com> Date: 星期日, 24 七月 2022 10:20:57 +0800 Subject: [PATCH] bug修改 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActServiceImpl.java | 8 ++++---- 1 files changed, 4 insertions(+), 4 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 00931e4..23c092e 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 @@ -238,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 = @@ -263,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