Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
332e892
微信客服 接待人员管理,会话分配与消息收发,基础信息获取等
Jan 26, 2022
8a4c58d
素材上传
Jan 26, 2022
7a4efe3
序列化注解
Feb 10, 2022
163da81
Merge branch 'develop' of github.com:Wechat-Group/WxJava into develop
Apr 1, 2022
c86852b
增加微信小程序 物流服务中的查询组件接口
Apr 1, 2022
ead9972
修改类型错误
Apr 2, 2022
0c31b53
修改字段
Apr 2, 2022
318b76b
增加微信小程序 物流服务中的查询组件接口
Apr 1, 2022
a91a0d4
修改类型错误
Apr 2, 2022
bf098f5
修改字段
Apr 2, 2022
575f3fb
Merge remote-tracking branch 'origin/develop' into develop
Apr 2, 2022
aa33ad9
物流查询服务
Apr 3, 2022
6c48307
序列化注解
Apr 5, 2022
9e21001
交易组件补充字段
Apr 5, 2022
36071f8
客服升级服务接口
Apr 26, 2022
db26bf6
内部类修改
Apr 26, 2022
1249dff
视频号分享人接口
Jun 18, 2022
029661e
视频号分享人接口
Jun 18, 2022
272c8c5
Merge branch 'develop' of github.com:Wechat-Group/WxJava into develop
Jun 19, 2022
35c3004
fix
Jun 20, 2022
e0b0680
标准交易组件
Jun 20, 2022
debcb4c
分享员订单结构修复
Jun 21, 2022
dbdba96
补充字段
Jun 24, 2022
547f889
售后单接口补全
Jun 28, 2022
52f64b1
自定义交易组件下单字段补全
Jun 29, 2022
b15379a
字段错误修复
Jun 29, 2022
bd32832
自定义交易组件优惠券接口
Jul 1, 2022
268972e
交易组件接口补充
Jul 8, 2022
362f1ea
添加 小程序交易组件-标准版--订单相关服务
Jul 8, 2022
4e75379
交易组件上传图片
Jul 8, 2022
33e224c
修复字段类型
Jul 9, 2022
09cad8b
common
Jul 11, 2022
aa18a48
修复npe
Jul 11, 2022
f69a253
售后接口
Jul 11, 2022
f5a1d44
交易组件订单服务
Jul 12, 2022
b023ae9
交易组件订单服务
Jul 12, 2022
2b20113
交易组件订单服务
Jul 12, 2022
3baaa41
获取sku列表
Jul 13, 2022
bb5dedf
sku字段补全
Jul 13, 2022
37a4ba9
sku返回值修复
Jul 13, 2022
ebdf03f
sku返回值修复
Jul 13, 2022
24daf64
售后单列表
Jul 14, 2022
b97b726
请求发货
Jul 14, 2022
2117030
Merge branch 'develop' of github.com:Wechat-Group/WxJava into develop
Jul 26, 2022
edde6b8
fix 属性
Jul 26, 2022
494c5fb
修改 接口注释
Jul 26, 2022
fd0077e
修改 接口注释
Jul 26, 2022
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 0c31b53ff6ff3c050c4354adffbd7043dc718d4e
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