Commit 5a783d7a by 雷后领

新增完成时间戳

parent f7971461
...@@ -966,6 +966,10 @@ public class OrderSdkAdapter { ...@@ -966,6 +966,10 @@ public class OrderSdkAdapter {
if (orderInfoReqs.getPayTime() != null) { if (orderInfoReqs.getPayTime() != null) {
data.setGmtPay(Long.parseLong(orderInfoReqs.getPayTime())); data.setGmtPay(Long.parseLong(orderInfoReqs.getPayTime()));
} }
if(orderInfoReqs.getReceiveTime()!=null){
data.setGmtCompleteTime(Long.parseLong(orderInfoReqs.getReceiveTime()));
data.setGmtReceiveTime(Long.parseLong(orderInfoReqs.getReceiveTime()));
}
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
......
...@@ -428,6 +428,15 @@ public class QueryOrdersResponse { ...@@ -428,6 +428,15 @@ public class QueryOrdersResponse {
private String downstreamThirdOrderCode; private String downstreamThirdOrderCode;
/**
* 签收时间 送达时间 收货时间
*/
private Long gmtReceiveTime;
/**
* 完成时间
*/
private Long gmtCompleteTime;
@NoArgsConstructor @NoArgsConstructor
@Data @Data
public static class AddDeliveryInfo { public static class AddDeliveryInfo {
......
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