Authored by mingdan.ge

渠道名称

... ... @@ -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());
... ...
... ... @@ -65,6 +65,11 @@
width: 200,
align: "center"
}, {
title: "渠道名称",
field: "unionName",
width: 200,
align: "center"
}, {
title: "是否有锁粉权限",
field: "specialStatus",
width: 200,
... ...