智慧保安后台管理-外网项目备份
Administrator
2021-11-27 a19eb9f3c3d07363830a274fc0493d311b1a85f8
src/main/java/org/springblade/modules/system/controller/DeptController.java
@@ -191,8 +191,8 @@
    */
   @GetMapping("/security_lazy-tree")
   @ApiOperation(value = "懒加载树形结构", notes = "树形结构")
   public R<List<DeptVO>> securityLazyTree(String jurisdiction, Long parentId) {
      List<DeptVO> tree = deptService.securityLazyTree(jurisdiction, parentId);
   public R<List<DeptVO>> securityLazyTree(String jurisdiction, Long parentId,Long deptId) {
      List<DeptVO> tree = deptService.securityLazyTree(jurisdiction, parentId,deptId);
      return R.data(tree);
   }