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
补充字段
Signed-off-by: wanglei <lei.wang@xianbb.cn>
  • Loading branch information
wanglei committed Jun 24, 2022
commit dbdba966cf4b88b035f3bb4ef6f6cfc1025bf165
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package cn.binarywang.wx.miniapp.bean.shop.request;

import cn.binarywang.wx.miniapp.bean.shop.request.WxMaShopAfterSaleAddRequest.ProductInfosBean;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
import lombok.Builder;
Expand Down Expand Up @@ -38,6 +39,8 @@ public class WxMaShopDeliverySendRequest implements Serializable {
private Integer finishAllDelivery;
@SerializedName("delivery_list")
private List<DeliveryListBean> deliveryList;
@SerializedName("ship_done_time")
private String shipDoneTme;

@Data
@Builder
Expand All @@ -53,5 +56,7 @@ public static class DeliveryListBean implements Serializable {
private String deliveryId;
@SerializedName("waybill_id")
private String waybillId;
@SerializedName("product_info_list")
private List<ProductInfosBean> productInfoList;
}
}