xieb
2024-12-11 c0e0761eec99d3642b6a1acdcdb5e2b51a481aaf
skjcmanager/skjcmanager-service/skjcmanager-system/src/main/java/cn/gistack/system/controller/DictBizController.java
@@ -165,6 +165,17 @@
   }
   /**
    * 获取字典
    */
   @GetMapping("/dictionaryByParentId")
   @ApiOperationSupport(order = 8)
   @ApiOperation(value = "获取字典", notes = "获取字典")
   public R<List<DictBiz>> dictionaryByParentId(String code,Long parentId) {
      List<DictBiz> tree = dictService.getListByParentId(code,parentId);
      return R.data(tree);
   }
   /**
    * 获取字典树
    */
   @GetMapping("/dictionary-tree")