🎨 #3308 【小程序】查运单接口接口响应中运单信息字段变更(waybill_token -> waybill_id)

This commit is contained in:
willowHB
2024-06-16 05:51:14 +08:00
committed by GitHub
parent 364f1cac07
commit 7bd65465a2
3 changed files with 8 additions and 8 deletions

View File

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

View File

@ -73,10 +73,10 @@ public class QueryFollowTraceResponse extends WxMaBaseResponse implements Serial
private Integer status;
/**
* 查询id.
* 运单号.
*/
@SerializedName("waybill_token")
private String waybillToken;
@SerializedName("waybill_id")
private String waybillId;
}
/**

View File

@ -73,10 +73,10 @@ public class QueryWaybillTraceResponse extends WxMaBaseResponse implements Seria
private Integer status;
/**
* 查询id.
* 运单号.
*/
@SerializedName("waybill_token")
private String waybillToken;
@SerializedName("waybill_id")
private String waybillId;
}
/**