Skip to content

Commit 7bd6546

Browse files
authored
🎨 #3308 【小程序】查运单接口接口响应中运单信息字段变更(waybill_token -> waybill_id)
1 parent 364f1ca commit 7bd6546

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/bean/delivery/FollowWaybillRequest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
/**
1414
* <pre>
15-
* 传运单接口 follow_waybil
15+
* 传运单接口 follow_waybill
1616
*
1717
* 商户使用此接口向微信提供某交易单号对应的运单号。微信后台会跟踪运单的状态变化,在关键物流节点给下单用户推送消息通知。
1818
* </pre>
@@ -53,7 +53,7 @@ public class FollowWaybillRequest implements Serializable {
5353
/**
5454
* 收件人手机号
5555
* <pre>
56-
* 是否必填:
56+
* 是否必填:
5757
* 描述:部分运力需要用户手机号作为查单依据
5858
* </pre>
5959
*/

weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/bean/delivery/QueryFollowTraceResponse.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ public static class WaybillInfo implements Serializable {
7373
private Integer status;
7474

7575
/**
76-
* 查询id.
76+
* 运单号.
7777
*/
78-
@SerializedName("waybill_token")
79-
private String waybillToken;
78+
@SerializedName("waybill_id")
79+
private String waybillId;
8080
}
8181

8282
/**

weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/bean/delivery/QueryWaybillTraceResponse.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ public static class WaybillInfo implements Serializable {
7373
private Integer status;
7474

7575
/**
76-
* 查询id.
76+
* 运单号.
7777
*/
78-
@SerializedName("waybill_token")
79-
private String waybillToken;
78+
@SerializedName("waybill_id")
79+
private String waybillId;
8080
}
8181

8282
/**

0 commit comments

Comments
 (0)