jiaosong
2023-09-14 a7a57c08a3c632bfc7fc82b8015167022c2d8505
server/platform/src/main/java/com/doumee/api/system/SystemMenuController.java
@@ -48,15 +48,10 @@
    }
    @ApiOperation("查询列表树")
    @PostMapping("/treeList/{type}")
    @PostMapping("/treeList")
    @RequiresPermissions("system:menu:query")
<<<<<<< HEAD
    public ApiResponse<List<SystemMenuListVO>> findTree ( @RequestBody SystemMenu systemMenu ) {
        return ApiResponse.success(systemMenuBiz.findTree());
=======
    public ApiResponse<List<SystemMenuListVO>> findTree (@PathVariable Integer type) {
        return ApiResponse.success(systemMenuBiz.findTreeByType(type));
>>>>>>> a7e6a3b52c64ba9add0ceb643d6915473a7770a4
    public ApiResponse<List<SystemMenuListVO>> findTree () {
        return ApiResponse.success(systemMenuBiz.findTreeByType(0));
    }
    @PreventRepeat