Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
修改类型错误
  • Loading branch information
boris.bao committed Apr 2, 2022
commit ead997230738d067bedfc8f2a408e8e402488137
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class QueryWaybillTraceRequest implements Serializable {
* </pre>
*/
@SerializedName("waybill_token")
private Integer waybillToken;
private String waybillToken;

public String toJson() {
return WxMaGsonBuilder.create().toJson(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static class WaybillInfo implements Serializable {
* 查询id.
*/
@SerializedName("waybill_token")
private Integer waybillToken;
private String waybillToken;
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class TraceWaybillRequest implements Serializable {
* </pre>
*/
@SerializedName("openid")
private Integer openid;
private String openid;

/**
* 寄件人手机号
Expand All @@ -46,7 +46,7 @@ public class TraceWaybillRequest implements Serializable {
* </pre>
*/
@SerializedName("sender_phone")
private Integer senderPhone;
private String senderPhone;

/**
* 收件人手机号
Expand All @@ -56,7 +56,7 @@ public class TraceWaybillRequest implements Serializable {
* </pre>
*/
@SerializedName("receiver_phone")
private Integer receiverPhone;
private String receiverPhone;

/**
* 运单ID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class TraceWaybillResponse extends WxMaBaseResponse implements Serializab
* 查询id.
*/
@SerializedName("waybill_token")
private Integer waybillToken;
private String waybillToken;


public static TraceWaybillResponse fromJson(String json) {
Expand Down