zrj
2024-07-03 0b1e9e70818f0e3eb32dd6c029d42d93236ecdc6
src/main/java/org/springblade/modules/system/controller/DictBizController.java
@@ -161,7 +161,7 @@
   @ApiOperationSupport(order = 8)
   @ApiOperation(value = "获取字典", notes = "获取字典")
   public R<List<DictBiz>> dictionary(String code) {
      List<DictBiz> tree = dictService.getList(code);
      List<DictBiz> tree = dictService.getList(code,null);
      return R.data(tree);
   }
@@ -172,7 +172,7 @@
   @ApiOperationSupport(order = 9)
   @ApiOperation(value = "获取字典树", notes = "获取字典树")
   public R<List<DictBizVO>> dictionaryTree(String code) {
      List<DictBiz> tree = dictService.getList(code);
      List<DictBiz> tree = dictService.getList(code,null);
      return R.data(DictBizWrapper.build().listNodeVO(tree));
   }