src/main/java/org/springblade/modules/system/controller/DictBizController.java
@@ -115,8 +115,8 @@ @GetMapping("/tree") @ApiOperationSupport(order = 5) @ApiOperation(value = "树形结构", notes = "树形结构") public R<List<DictBizVO>> tree() { List<DictBizVO> tree = dictService.tree(); public R<List<DictBizVO>> tree(@RequestParam(value = "code", required = false) String code) { List<DictBizVO> tree = dictService.tree(code); return R.data(tree); }