File tree Expand file tree Collapse file tree 1 file changed +13
-6
lines changed
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/delivery Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change 11package me .chanjar .weixin .channel .bean .delivery ;
22
33import com .fasterxml .jackson .annotation .JsonProperty ;
4- import java .io .Serializable ;
54import lombok .Data ;
65import lombok .NoArgsConstructor ;
76
7+ import java .io .Serializable ;
8+
89/**
910 * 包裹中商品信息
1011 *
1314@ Data
1415@ NoArgsConstructor
1516public class FreightProductInfo implements Serializable {
16-
1717 private static final long serialVersionUID = -3751269707150372172L ;
18- /** 商品id */
18+
19+ /**
20+ * 商品id
21+ */
1922 @ JsonProperty ("product_id" )
2023 private String productId ;
2124
22- /** sku_id */
25+ /**
26+ * sku_id
27+ */
2328 @ JsonProperty ("sku_id" )
2429 private String skuId ;
2530
26- /** 商品数量 */
31+ /**
32+ * 商品数量
33+ */
2734 @ JsonProperty ("product_cnt" )
28- private String productCnt ;
35+ private Integer productCnt ;
2936}
You can’t perform that action at this time.
0 commit comments