From 5b26077c6b895dc72e7a80e6d2ddccc7b754da8e Mon Sep 17 00:00:00 2001 From: zhaozhengjie <237651143@qq.com> Date: 星期日, 09 十月 2022 13:59:42 +0800 Subject: [PATCH] Merge branch '20221008' into huacheng_test --- springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/RoleApi.java | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/RoleApi.java b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/RoleApi.java index 973c718..db594ed 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/RoleApi.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/RoleApi.java @@ -4,6 +4,7 @@ import javax.annotation.Resource; +import com.panzhihua.common.controller.BaseController; import org.springframework.web.bind.annotation.*; import com.panzhihua.common.model.vos.MenuVO; @@ -20,7 +21,7 @@ **/ @RestController @RequestMapping("/role/") -public class RoleApi { +public class RoleApi extends BaseController { @Resource private RoleService roleService; @@ -103,7 +104,7 @@ */ @PostMapping("listmenubackstage") public R listMenuBackstage(@RequestParam("communityId") Long communityId) { - return roleService.listMenuBackstage(communityId); + return roleService.listMenuBackstage(communityId,this.getAppId()); } /** -- Gitblit v1.7.1