Przeglądaj źródła

[招商]adjust

release_toaliyun_real
Burce 6 lat temu
rodzic
commit
e83cba3234
1 zmienionych plików z 4 dodań i 1 usunięć
  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 Wyświetl plik

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



Ładowanie…
Anuluj
Zapisz