|
|
|
@@ -239,7 +239,10 @@ public class InvestBizServiceImpl implements InvestBizService { |
|
|
|
List<InvestFollowRecordVo> resultList = new ArrayList<>(); |
|
|
|
for (InvestFollowRecordEntity item : recordList) { |
|
|
|
InvestCustomerEntity customerEntity = customerMap.get(item.getCustomerId()); |
|
|
|
WxBrand brand = brandMap.get(customerEntity.getBrandId()); |
|
|
|
WxBrand brand = null; |
|
|
|
if (Objects.nonNull(customerEntity)) { |
|
|
|
brand = brandMap.get(customerEntity.getBrandId()); |
|
|
|
} |
|
|
|
resultList.add(buildFollowRecordItem(usersMap, item, customerEntity, brand)); |
|
|
|
} |
|
|
|
|
|
|
|
|