记得上下班打卡 | git大法好,push需谨慎

Commit 5076a932 authored by 姜秀龙's avatar 姜秀龙

离线支付-迈之 老数据导致的 null

parent 2e6f3f1d
...@@ -180,6 +180,7 @@ public class GoblinRechargeWristbandServiceImpl extends ServiceImpl<GoblinRechar ...@@ -180,6 +180,7 @@ public class GoblinRechargeWristbandServiceImpl extends ServiceImpl<GoblinRechar
if (null != res && res.getErrcode() == 200) { if (null != res && res.getErrcode() == 200) {
for (DeviceNumberResponse.NumberList info : res.getList()) { for (DeviceNumberResponse.NumberList info : res.getList()) {
String orderId = goblinRedisUtils.getOrderIdByFoutTradeNo(info.getFout_trade_no()); String orderId = goblinRedisUtils.getOrderIdByFoutTradeNo(info.getFout_trade_no());
if (null != orderId) {
GoblinBraceletOrderVo orderVo = goblinRedisUtils.getBraceletOrderVo(orderId); GoblinBraceletOrderVo orderVo = goblinRedisUtils.getBraceletOrderVo(orderId);
if (null != orderVo) { if (null != orderVo) {
orderVo.setCardno(info.getCardno()); orderVo.setCardno(info.getCardno());
...@@ -198,7 +199,7 @@ public class GoblinRechargeWristbandServiceImpl extends ServiceImpl<GoblinRechar ...@@ -198,7 +199,7 @@ public class GoblinRechargeWristbandServiceImpl extends ServiceImpl<GoblinRechar
SqlMapping.gets(sqls, sqlDataOrder) SqlMapping.gets(sqls, sqlDataOrder)
); );
} }
}
} }
goblinRedisUtils.setDeviceNumberEndTime(operationNo, String.valueOf(timestamp)); goblinRedisUtils.setDeviceNumberEndTime(operationNo, String.valueOf(timestamp));
return true; return true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment