mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-11-02 12:38:22 +08:00
🎨 #3308 【小程序】查运单接口接口响应中运单信息字段变更(waybill_token -> waybill_id)
This commit is contained in:
@ -12,7 +12,7 @@ import lombok.experimental.Accessors;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
* 传运单接口 follow_waybil
|
* 传运单接口 follow_waybill
|
||||||
*
|
*
|
||||||
* 商户使用此接口向微信提供某交易单号对应的运单号。微信后台会跟踪运单的状态变化,在关键物流节点给下单用户推送消息通知。
|
* 商户使用此接口向微信提供某交易单号对应的运单号。微信后台会跟踪运单的状态变化,在关键物流节点给下单用户推送消息通知。
|
||||||
* </pre>
|
* </pre>
|
||||||
@ -53,7 +53,7 @@ public class FollowWaybillRequest implements Serializable {
|
|||||||
/**
|
/**
|
||||||
* 收件人手机号
|
* 收件人手机号
|
||||||
* <pre>
|
* <pre>
|
||||||
* 是否必填: 否
|
* 是否必填: 是
|
||||||
* 描述:部分运力需要用户手机号作为查单依据
|
* 描述:部分运力需要用户手机号作为查单依据
|
||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -73,10 +73,10 @@ public class QueryFollowTraceResponse extends WxMaBaseResponse implements Serial
|
|||||||
private Integer status;
|
private Integer status;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询id.
|
* 运单号.
|
||||||
*/
|
*/
|
||||||
@SerializedName("waybill_token")
|
@SerializedName("waybill_id")
|
||||||
private String waybillToken;
|
private String waybillId;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -73,10 +73,10 @@ public class QueryWaybillTraceResponse extends WxMaBaseResponse implements Seria
|
|||||||
private Integer status;
|
private Integer status;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询id.
|
* 运单号.
|
||||||
*/
|
*/
|
||||||
@SerializedName("waybill_token")
|
@SerializedName("waybill_id")
|
||||||
private String waybillToken;
|
private String waybillId;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user