Showing
1 changed file
with
12 additions
and
8 deletions
@@ -34,14 +34,18 @@ public static class Request { | @@ -34,14 +34,18 @@ public static class Request { | ||
34 | 34 | ||
35 | ```java | 35 | ```java |
36 | public static class OrderSummary { | 36 | public static class OrderSummary { |
37 | - private Long userId; | 37 | + private Long id; |
38 | - private String orderCode; | ||
39 | - private String versionGrade; | ||
40 | 38 | ||
41 | - private String orderName; | 39 | + private String sourceWxNickName; // 邀请人 昵称 |
42 | - private String orderMobile; | 40 | + private Long sourceInvitationCode; // 邀请人 邀请码 |
43 | - private Long invitationCode; | 41 | + |
42 | + private Long userId; // 领取人 ID | ||
43 | + private String orderMobile; // 领取人 手机号 | ||
44 | + private String orderName; // 领取人 收货名称 | ||
45 | + | ||
46 | + private String orderCode; | ||
44 | private DateTime orderTime; | 47 | private DateTime orderTime; |
48 | + private String versionGrade; | ||
45 | 49 | ||
46 | private String orderProvince; | 50 | private String orderProvince; |
47 | private String orderCity; | 51 | private String orderCity; |
@@ -52,8 +56,8 @@ public static class OrderSummary { | @@ -52,8 +56,8 @@ public static class OrderSummary { | ||
52 | private Boolean flagPost; // 是否已邮寄 | 56 | private Boolean flagPost; // 是否已邮寄 |
53 | private DateTime postTime; // 邮寄时间 | 57 | private DateTime postTime; // 邮寄时间 |
54 | 58 | ||
55 | - private String obtainTypeDesc; | 59 | + private String obtainType; |
56 | - private WxMiniUserRelationshipEntity.OrderObtainType obtainType; | 60 | + private String courseType; |
57 | } | 61 | } |
58 | ``` | 62 | ``` |
59 | 63 |
-
Please register or login to post a comment