Commit 29c863c8 by 王世昌

订单状态埋点监控查询

parent f61e8f8e
...@@ -3641,7 +3641,7 @@ public class OrderSdkAdapter { ...@@ -3641,7 +3641,7 @@ public class OrderSdkAdapter {
OrderOperationHistoryResp historyResp = historyList.get(i); OrderOperationHistoryResp historyResp = historyList.get(i);
if (Objects.equals(historyResp.getTargetOrderState(), orderInfoReqs.getOrderState())) { if (Objects.equals(historyResp.getTargetOrderState(), orderInfoReqs.getOrderState())) {
info.setStateUpdateTimestamp(historyResp.getUpdateTimestamp()); info.setStateUpdateTimestamp(historyResp.getUpdateTimestamp());
info.setStateTimeout(historyResp.getStateTimeout()); info.setStateTimeout(historyResp.getTimeout());
break; break;
} }
} }
......
...@@ -53,6 +53,6 @@ public class OrderOperationHistoryResp { ...@@ -53,6 +53,6 @@ public class OrderOperationHistoryResp {
/** /**
* 状态超时时间 单位:秒 * 状态超时时间 单位:秒
*/ */
private Long stateTimeout; private Long timeout;
} }
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