Browse Source

[招商]adjust

release_toaliyun_real
Burce 6 years ago
parent
commit
e83cba3234
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      mallinkService/src/main/java/com/iformall/service/invest/impl/InvestBizServiceImpl.java

+ 4
- 1
mallinkService/src/main/java/com/iformall/service/invest/impl/InvestBizServiceImpl.java View File

@@ -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));
}



Loading…
Cancel
Save