@@ -281,6 +281,9 @@ public class ClientUserServiceImpl implements ClientUserSevice { | |||
vo.setList(businessSystemVoList); | |||
return vo; | |||
}); | |||
//过滤出测试租户数据 | |||
List<TenantPo> collect = pageData.getRecords().stream().filter(t -> ObjectUtil.isNotEmpty(t.getCode())).collect(Collectors.toList()); | |||
pageData.setRecords(collect); | |||
return JsonResult.success(pageData); | |||
} | |||