linwei
2024-02-03 b7df6735bcb2d447cae7fcfba2d12accf3dd2fcc
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);
   }