|
|
@@ -261,29 +261,30 @@ public class ClientUserServiceImpl implements ClientUserSevice { |
|
|
|
IPage<TenantPo> pageData = tenantMapper.findList(page, query); |
|
|
|
pageData.convert(x -> { |
|
|
|
TenantVo vo = Convert.convert(TenantVo.class, x); |
|
|
|
Long userId = x.getUserId(); |
|
|
|
List<AuthoritiesPo> poList = authoritiesMapper.selectByUserId(userId); |
|
|
|
UserPo userPo = clientUserMapper.selectByUserId(userId); |
|
|
|
if (null != userPo) { |
|
|
|
vo.setUsername(userPo.getUsername()); |
|
|
|
} |
|
|
|
List<BusinessSystemVo> businessSystemVoList = new ArrayList<>(); |
|
|
|
for (AuthoritiesPo authoritiesPo : poList) { |
|
|
|
BusinessSystemVo businessSystemVo = new BusinessSystemVo(); |
|
|
|
//TODO 后期维护各个业务平台 |
|
|
|
if (authoritiesPo.getAuthority().contains("hhz")) { |
|
|
|
businessSystemVo.setClientId(HhzUrlConstant.HHZ_CLIENT); |
|
|
|
businessSystemVo.setName(HhzUrlConstant.HHZ_NAME); |
|
|
|
businessSystemVoList.add(businessSystemVo); |
|
|
|
if (ObjectUtil.isNotEmpty(vo.getCode())) { |
|
|
|
Long userId = x.getUserId(); |
|
|
|
List<AuthoritiesPo> poList = authoritiesMapper.selectByUserId(userId); |
|
|
|
UserPo userPo = clientUserMapper.selectByUserId(userId); |
|
|
|
if (null != userPo) { |
|
|
|
vo.setUsername(userPo.getUsername()); |
|
|
|
} |
|
|
|
List<BusinessSystemVo> businessSystemVoList = new ArrayList<>(); |
|
|
|
for (AuthoritiesPo authoritiesPo : poList) { |
|
|
|
BusinessSystemVo businessSystemVo = new BusinessSystemVo(); |
|
|
|
//TODO 后期维护各个业务平台 |
|
|
|
if (authoritiesPo.getAuthority().contains("hhz")) { |
|
|
|
businessSystemVo.setClientId(HhzUrlConstant.HHZ_CLIENT); |
|
|
|
businessSystemVo.setName(HhzUrlConstant.HHZ_NAME); |
|
|
|
businessSystemVoList.add(businessSystemVo); |
|
|
|
} |
|
|
|
} |
|
|
|
businessSystemVoList = businessSystemVoList.stream().distinct().collect(Collectors.toList()); |
|
|
|
vo.setList(businessSystemVoList); |
|
|
|
return vo; |
|
|
|
} else { |
|
|
|
return null; |
|
|
|
} |
|
|
|
businessSystemVoList = businessSystemVoList.stream().distinct().collect(Collectors.toList()); |
|
|
|
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); |
|
|
|
} |
|
|
|
|