Commit 5ca40de5 authored by 胡建龙's avatar 胡建龙

[fix]修复流水号字段存表不一致问题

parent d3fdde6a
...@@ -320,7 +320,7 @@ public class PingAnServiceImpl implements PingAnService { ...@@ -320,7 +320,7 @@ public class PingAnServiceImpl implements PingAnService {
HlsEbankCcbTransaction ccbTransaction = new HlsEbankCcbTransaction(); HlsEbankCcbTransaction ccbTransaction = new HlsEbankCcbTransaction();
JSONObject data = arr.getJSONObject(i); JSONObject data = arr.getJSONObject(i);
if ("C".equalsIgnoreCase(data.getString("DCFlag"))) { if ("C".equalsIgnoreCase(data.getString("DCFlag"))) {
ccbTransaction.setCmbOrderId(data.getString("BizFlowNo")); ccbTransaction.setCmbOrderId(data.getString("JournalNo"));
ccbTransaction.setTranType(data.getString("DCFlag")); ccbTransaction.setTranType(data.getString("DCFlag"));
int exist = hlsEbankCcbTransactionMapper.queryByCmbOrderId(ccbTransaction); int exist = hlsEbankCcbTransactionMapper.queryByCmbOrderId(ccbTransaction);
if (exist == 0) { if (exist == 0) {
...@@ -342,7 +342,7 @@ public class PingAnServiceImpl implements PingAnService { ...@@ -342,7 +342,7 @@ public class PingAnServiceImpl implements PingAnService {
ccbTransaction.setSuccessDate(new Date()); ccbTransaction.setSuccessDate(new Date());
ccbTransaction.setCount(1L); ccbTransaction.setCount(1L);
ccbTransaction.setBankType("PAB"); ccbTransaction.setBankType("PAB");
ccbTransaction.setMerOrderNo(data.getString("JournalNo")); ccbTransaction.setMerOrderNo(data.getString("BizFlowNo"));
ccbTransaction.setVersion(data.getString("AccountDate")); ccbTransaction.setVersion(data.getString("AccountDate"));
ccbTransaction.setTranDate(data.getString("AccountDate")); ccbTransaction.setTranDate(data.getString("AccountDate"));
ccbTransaction.setTranTime(data.getString("TranTime")); ccbTransaction.setTranTime(data.getString("TranTime"));
......
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