洪城义警-正式版后台
zengh
2021-08-13 ccc6e51f22bf0b2b0cebb84e32f55a5cebdb9692
src/main/java/org/springblade/modules/jurisdiction/controller/JurisdictionController.java
@@ -104,8 +104,8 @@
   @GetMapping("/tree")
   @ApiOperationSupport(order = 4)
   @ApiOperation(value = "树形结构", notes = "树形结构")
   public R<List<JurisdictionVO>> tree(String tenantId, BladeUser bladeUser) {
      List<JurisdictionVO> tree = jurisdictionService.tree(Func.toStrWithEmpty(tenantId, bladeUser.getTenantId()));
   public R<List<JurisdictionVO>> tree(String tenantId) {
      List<JurisdictionVO> tree = jurisdictionService.tree(tenantId);
      return R.data(tree);
   }