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 bf098f543a1159d70dbcd41970dc626d8a239e0f
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@ public class QueryWaybillTraceRequest implements Serializable {
private static final long serialVersionUID = -7538739003766268386L;






/**
* 查询id
* <pre>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package cn.binarywang.wx.miniapp.bean.delivery;


import cn.binarywang.wx.miniapp.bean.express.WxMaExpressDelivery;
import cn.binarywang.wx.miniapp.json.WxMaGsonBuilder;
import com.google.gson.annotations.SerializedName;
import java.io.Serializable;
Expand All @@ -15,6 +14,7 @@
* <pre>
* 传运单接口 trace_waybill
* </pre>
*
* @author boris
* @since 2022-04-01
*/
Expand Down Expand Up @@ -86,6 +86,15 @@ public class TraceWaybillRequest implements Serializable {
@SerializedName("order_detail_path")
private String orderDetailPath;

/**
* 商品信息
* <pre>
* 是否必填: 是
* </pre>
*/
@SerializedName("goods_info")
private WaybillGoodsInfo goodsInfo;

public String toJson() {
return WxMaGsonBuilder.create().toJson(this);
}
Expand Down