Sfoglia il codice sorgente

[招商]adjust

release_toaliyun_real
Burce 6 anni fa
parent
commit
e83cba3234
1 ha cambiato i file con 4 aggiunte e 1 eliminazioni
  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 Vedi 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));
}



Caricamento…
Annulla
Salva