Showing
1 changed file
with
57 additions
and
0 deletions
boxfish-四会课小程序/四会课领取后台接口.md
0 → 100644
1 | +[](https://996.icu) | ||
2 | + | ||
3 | + | ||
4 | +### 四会课程 管理后台接口 | ||
5 | + | ||
6 | +##### 1. 查询全部领取的信息 | ||
7 | + | ||
8 | +- URL: {{localhost}}/boxfish-online-card/order/textbook/manage/getOrderHistory | ||
9 | +- Method: POST | ||
10 | +- RequestBody: | ||
11 | + | ||
12 | +```java | ||
13 | +public static class Request { | ||
14 | + // request | ||
15 | + private Integer startPage = 0; | ||
16 | + private Integer pageSize = 40; | ||
17 | + | ||
18 | + private Long userId; | ||
19 | + | ||
20 | + // exchange packageCode | ||
21 | + private String versionCode; | ||
22 | + // exchange userId | ||
23 | + private String orderName; | ||
24 | + private String orderMobile; | ||
25 | + private Long invitationCode; | ||
26 | + | ||
27 | + private DateTime orderStartTime; | ||
28 | + private DateTime orderEndTime; | ||
29 | +} | ||
30 | +``` | ||
31 | + | ||
32 | +- ResponseBody | ||
33 | + | ||
34 | +```java | ||
35 | +public static class OrderSummary { | ||
36 | + private Long userId; | ||
37 | + private String orderCode; | ||
38 | + private String versionGrade; | ||
39 | + | ||
40 | + private String orderName; | ||
41 | + private String orderMobile; | ||
42 | + private Long invitationCode; | ||
43 | + private DateTime orderTime; | ||
44 | + | ||
45 | + private String orderProvince; | ||
46 | + private String orderCity; | ||
47 | + private String orderCounty; | ||
48 | + private String orderAddressDetail; | ||
49 | + | ||
50 | + private Boolean flagEnable; // 是否需要邮寄 | ||
51 | + private Boolean flagPost; // 是否已邮寄 | ||
52 | + private DateTime postTime; // 邮寄时间 | ||
53 | + | ||
54 | + private String obtainTypeDesc; | ||
55 | + private WxMiniUserRelationshipEntity.OrderObtainType obtainType; | ||
56 | +} | ||
57 | +``` |
-
Please register or login to post a comment