From 7dd8057f19f9e4984d5150f34f14f0fdda64faed Mon Sep 17 00:00:00 2001 From: 张天森 <1292933220@qq.com> Date: 星期四, 13 十月 2022 19:59:22 +0800 Subject: [PATCH] 三说会堂事件操作权限处理 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ConvenientApi.java | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ConvenientApi.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ConvenientApi.java index 9a8c8b5..72a50a7 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ConvenientApi.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ConvenientApi.java @@ -365,7 +365,6 @@ */ @PostMapping("/merchant/add") public R addMerchant(@RequestBody ConvenientMerchantDTO convenientMerchantDTO) { - log.error("catTimeStamp进入service_community", Instant.now().toEpochMilli()); return convenientMerchantService.addMerchant(convenientMerchantDTO); } @@ -434,8 +433,8 @@ * @return */ @GetMapping("/service-category/all") - public R getAllServiceCategories() { - return convenientServiceCategoryService.getAllServiceCategories(); + public R getAllServiceCategories(@RequestParam("areaCode") String areaCode) { + return convenientServiceCategoryService.getAllServiceCategories(areaCode); } /** @@ -585,8 +584,8 @@ * @return */ @GetMapping("/service-category/suitable") - public R getSuitableServiceCategories(@RequestParam("communityId") Long communityId) { - return convenientServiceCategoryService.getSuitableServiceCategories(communityId); + public R getSuitableServiceCategories(@RequestParam("communityId") Long communityId,@RequestParam("areaCode")String areaCode) { + return convenientServiceCategoryService.getSuitableServiceCategories(communityId,areaCode); } /** -- Gitblit v1.7.1