|
@@ -120,10 +120,10 @@ public class UserController {
|
|
|
/**
|
|
|
* 按应用查询菜单信息(所有租户菜单:isTenant=1)
|
|
|
*/
|
|
|
- @ApiOperation(value = "查询应用菜单信息")
|
|
|
+ @ApiOperation(value = "查询所有菜单信息")
|
|
|
@RequestMapping(value = "/findTenantMenu", method = RequestMethod.GET)
|
|
|
- public AjaxMessage<List<MenuEntity>> findTenantMenu(@ApiParam(value = "应用ID", required = true) @RequestParam String appId) {
|
|
|
- List<MenuEntity> menuEntityList = menuService.findTenantMenu(appId);
|
|
|
+ public AjaxMessage<List<MenuEntity>> findTenantMenu() {
|
|
|
+ List<MenuEntity> menuEntityList = menuService.findTenantMenu();
|
|
|
return new AjaxMessage<>(ResultStatus.OK, menuEntityList);
|
|
|
}
|
|
|
|