File tree Expand file tree Collapse file tree 3 files changed +110
-0
lines changed
weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean/kf Expand file tree Collapse file tree 3 files changed +110
-0
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,10 @@ public static class WxCpKfMsgItem {
6363 @ SerializedName ("msgmenu" )
6464 private WxCpKfMenuMsg msgMenu ;
6565 private WxCpKfEventMsg event ;
66+ @ SerializedName ("channels_shop_product" )
67+ private WxCpKfChannelsShopProductMsg channelsShopProduct ;
68+ @ SerializedName ("channels_shop_order" )
69+ private WxCpKfChannelsShopOrderMsg channelsShopOrder ;
6670 }
6771
6872 /**
Original file line number Diff line number Diff line change 1+ package me .chanjar .weixin .cp .bean .kf .msg ;
2+
3+ import com .google .gson .annotations .SerializedName ;
4+ import lombok .Data ;
5+ import lombok .NoArgsConstructor ;
6+
7+ /**
8+ * The type Wx cp kf channels shop order msg.
9+ *
10+ * @author dalin created on 2023/1/10 17:28
11+ *
12+ */
13+ @ NoArgsConstructor
14+ @ Data
15+ public class WxCpKfChannelsShopOrderMsg {
16+
17+ /**
18+ * 订单号
19+ */
20+ @ SerializedName ("order_id" )
21+ private String orderId ;
22+
23+ /**
24+ * 商品标题
25+ */
26+ @ SerializedName ("product_titles" )
27+ private String productTitles ;
28+
29+ /**
30+ * 订单价格描述
31+ */
32+ @ SerializedName ("price_wording" )
33+ private String priceWording ;
34+
35+ /**
36+ * 订单状态
37+ */
38+ @ SerializedName ("state" )
39+ private String state ;
40+
41+ /**
42+ * 订单缩略图
43+ */
44+ @ SerializedName ("image_url" )
45+ private String imageUrl ;
46+
47+ /**
48+ * 店铺名称
49+ */
50+ @ SerializedName ("shop_nickname" )
51+ private String shopNickname ;
52+
53+ }
Original file line number Diff line number Diff line change 1+ package me .chanjar .weixin .cp .bean .kf .msg ;
2+
3+ import com .google .gson .annotations .SerializedName ;
4+ import lombok .Data ;
5+ import lombok .NoArgsConstructor ;
6+
7+ /**
8+ * The type Wx cp kf channels shop product msg.
9+ *
10+ * @author dalin created on 2023/1/10 17:26
11+ *
12+ */
13+ @ NoArgsConstructor
14+ @ Data
15+ public class WxCpKfChannelsShopProductMsg {
16+
17+ /**
18+ * 商品ID
19+ */
20+ @ SerializedName ("product_id" )
21+ private String productId ;
22+
23+ /**
24+ * 商品图片
25+ */
26+ @ SerializedName ("head_img" )
27+ private String headImg ;
28+
29+ /**
30+ * 商品标题
31+ */
32+ @ SerializedName ("title" )
33+ private String title ;
34+
35+ /**
36+ * 商品价格,以分为单位
37+ */
38+ @ SerializedName ("sales_price" )
39+ private String salesPrice ;
40+
41+ /**
42+ * 店铺名称
43+ */
44+ @ SerializedName ("shop_nickname" )
45+ private String shopNickname ;
46+
47+ /**
48+ * 店铺头像
49+ */
50+ @ SerializedName ("shop_head_img" )
51+ private String shopHeadImg ;
52+
53+ }
You can’t perform that action at this time.
0 commit comments