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