Toggle navigation
Toggle navigation
This project
Loading...
Sign in
huayandong
/
recommend-api
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
huayandong
2019-06-05 18:28:17 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4dd05ba5d9f387fc40f6631d864740c3245dafe8
4dd05ba5
1 parent
6b977b74
update doc api
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
0 deletions
boxfish-四会课小程序/四会课领取后台接口.md
boxfish-四会课小程序/四会课领取后台接口.md
0 → 100644
View file @
4dd05ba
[

](https://996.icu)
### 四会课程 管理后台接口
##### 1. 查询全部领取的信息
-
URL: {{localhost}}/boxfish-online-card/order/textbook/manage/getOrderHistory
-
Method: POST
-
RequestBody:
```
java
public
static
class
Request
{
// request
private
Integer
startPage
=
0
;
private
Integer
pageSize
=
40
;
private
Long
userId
;
// exchange packageCode
private
String
versionCode
;
// exchange userId
private
String
orderName
;
private
String
orderMobile
;
private
Long
invitationCode
;
private
DateTime
orderStartTime
;
private
DateTime
orderEndTime
;
}
```
-
ResponseBody
```
java
public
static
class
OrderSummary
{
private
Long
userId
;
private
String
orderCode
;
private
String
versionGrade
;
private
String
orderName
;
private
String
orderMobile
;
private
Long
invitationCode
;
private
DateTime
orderTime
;
private
String
orderProvince
;
private
String
orderCity
;
private
String
orderCounty
;
private
String
orderAddressDetail
;
private
Boolean
flagEnable
;
// 是否需要邮寄
private
Boolean
flagPost
;
// 是否已邮寄
private
DateTime
postTime
;
// 邮寄时间
private
String
obtainTypeDesc
;
private
WxMiniUserRelationshipEntity
.
OrderObtainType
obtainType
;
}
```
\ No newline at end of file
...
...
Please
register
or
login
to post a comment