Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

查运单接口query_trace/query_follow_trace接口响应中运单信息变更:waybill_token --》waybill_id #3308

Merged
merged 4 commits into from
Jun 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

/**
* <pre>
* 传运单接口 follow_waybil
* 传运单接口 follow_waybill
*
* 商户使用此接口向微信提供某交易单号对应的运单号。微信后台会跟踪运单的状态变化,在关键物流节点给下单用户推送消息通知。
* </pre>
Expand Down Expand Up @@ -53,7 +53,7 @@ public class FollowWaybillRequest implements Serializable {
/**
* 收件人手机号
* <pre>
* 是否必填:
* 是否必填:
* 描述:部分运力需要用户手机号作为查单依据
* </pre>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ public static class WaybillInfo implements Serializable {
private Integer status;

/**
* 查询id.
* 运单号.
*/
@SerializedName("waybill_token")
private String waybillToken;
@SerializedName("waybill_id")
private String waybillId;
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ public static class WaybillInfo implements Serializable {
private Integer status;

/**
* 查询id.
* 运单号.
*/
@SerializedName("waybill_token")
private String waybillToken;
@SerializedName("waybill_id")
private String waybillId;
}

/**
Expand Down