洪城义警-正式版后台
zhongrj
2023-11-14 62cd133e894d8cc8d527d5e94a4310794e03f763
src/main/java/org/springblade/modules/jurisdiction/controller/JurisdictionController.java
@@ -125,8 +125,8 @@
   @GetMapping("/lazy-team")
   @ApiOperationSupport(order = 5)
   @ApiOperation(value = "懒加载树形结构", notes = "树形结构")
   public R<List<JurisdictionVO>> lazyTeam(String tenantId, Long parentId, BladeUser bladeUser) {
      List<JurisdictionVO> tree = jurisdictionService.lazyTeam(Func.toStrWithEmpty(tenantId, bladeUser.getTenantId()), parentId);
   public R<List<JurisdictionVO>> lazyTeam() {
      List<JurisdictionVO> tree = jurisdictionService.lazyTeam();
      return R.data(tree);
   }