|
|
@@ -1,6 +1,7 @@
|
|
|
package com.fs.live.service.impl;
|
|
|
|
|
|
|
|
|
+import cn.hutool.core.util.ObjectUtil;
|
|
|
import com.fs.common.utils.DateUtils;
|
|
|
import com.fs.huifuPay.domain.HuiFuQueryOrderResult;
|
|
|
import com.fs.huifuPay.sdk.opps.core.request.V2TradePaymentScanpayQueryRequest;
|
|
|
@@ -68,7 +69,7 @@ public class LiveOrderPaymentServiceImpl implements ILiveOrderPaymentService {
|
|
|
List<LiveOrderPaymentVo> liveOrderPaymentVos = baseMapper.selectLiveOrderPaymentVoList(liveOrderPayment);
|
|
|
|
|
|
for (LiveOrderPaymentVo vo : liveOrderPaymentVos) {
|
|
|
- if(ObjectUtils.isEmpty(vo.getProductId())){
|
|
|
+ if(ObjectUtil.isNotNull(vo.getProductId())){
|
|
|
FsStoreProduct fsStoreProduct = productMap.get(vo.getProductId());
|
|
|
if(fsStoreProduct != null){
|
|
|
vo.setPackageTitle(fsStoreProduct.getProductName());
|