Explorar el Código

[招商]adjust

release_toaliyun_real
Burce hace 6 años
padre
commit
e83cba3234
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  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 Ver fichero

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



Cargando…
Cancelar
Guardar