Skip to content
Merged
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
wanglei committed Jun 21, 2022
commit debcb4c3fa3989032953de21280c2fefdcb1e155
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,20 @@ public class WxMaShopSharerLiveOrderListResponse extends WxMaShopBaseResponse im

private static final long serialVersionUID = -4190199778148290127L;

private List<WxMaShopOrderDetail> orders;
private List<WxMaShopOrderItem> orders;

@SerializedName("total_num")
private Integer totalNum;

@Data
public static class WxMaShopOrderItem {
@SerializedName("order_id")
private Long orderId;
@SerializedName("out_order_id")
private String outOrderId;
private Integer status;
private String path;
@SerializedName("order_detail")
private WxMaShopOrderDetail orderDetail;
}
}