...
|
...
|
@@ -437,6 +437,13 @@ public class UnionShareServiceImpl implements IUnionShareService,IBusinessExport |
|
|
return null;
|
|
|
}
|
|
|
List<UnionShareUserRspBo> list=this.unionShareUserMapper.selectByCondition(req);
|
|
|
List<String> unionTypeList = list.stream().map(bo -> bo.getUnionType()).collect(Collectors.toList());
|
|
|
Map<Long, MktMarketingUrl> longMktMarketingUrlMap = mktMarketingUrlDAO.selectByUnionTypes(unionTypeList);
|
|
|
list.forEach(u->{
|
|
|
if (longMktMarketingUrlMap.containsKey(Long.valueOf(u.getUnionType()))) {
|
|
|
u.setUnionName(longMktMarketingUrlMap.get(Long.valueOf(u.getUnionType())).getName());
|
|
|
}
|
|
|
});
|
|
|
PageResponseBO<UnionShareUserRspBo> result=new PageResponseBO<>();
|
|
|
result.setList(list);
|
|
|
result.setPage(req.getPage());
|
...
|
...
|
|