文档
测试

订单记录(新增)

GET
/api/v1/order/orderRecordList

请求头

参数名
类型
描述
必填
token
string
token验证;必须;示例:eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6Miwibmlja25hbWUiOiJhc2RramthIiwiYXV0aG9yaXR5X2lkIjowLCJ1dWlkIjoiIn0.2F4RX2h9wfNgGTYvLimb96CzbDJW1dFpWYg1gAlvng8
必填

请求参数

参数名
类型
描述
必填
page
int
当前页;必须
必填
page_size
int
每页的大小;必须
必填
state
int
状态 1=处理中 2=成功 3=失败
必填
keyword
string
关键字
必填
begin_time
string
开始时间
必填
end_time
string
结束时间
必填

响应参数

参数名
类型
描述
必填
code
int
示例:200
必填
message
string
示例:success
必填
data
object
数据字典
必填
list
array
数据列表
必填
ID
int
示例:6
必填
created_at
string
示例:2021-09-27T14:22:24+08:00
必填
generate_username
string
示例:SP6
必填
receive_username
string
示例:
必填
order_no
string
示例:202109271422240788170001
必填
order_type
int
示例:1
必填
generate_role
int
示例:3
必填
amount
int
示例:50
必填
pay_amount
int
示例:0
必填
commission
int
示例:0
必填
pay_mode
int
示例:0
必填
payment_real_name
string
示例:李欣
必填
payment_account
string
示例:
必填
collection_real_name
string
示例:
必填
collection_account_name
string
示例:
必填
collection_account_number
string
示例:
必填
collection_bank_name
string
示例:
必填
collection_url
string
示例:
必填
order_state
int
示例:1
必填
past_at
int
示例:1632725544
必填
receiving_at
string
示例:0001-01-01T00:00:00Z
必填
finish_at
string
示例:0001-01-01T00:00:00Z
必填
total
int
示例:1
必填
page
int
示例:1
必填
pageSize
int
示例:10
必填

说明 / 示例

``` { "code": 200, "message": "success", "data": { "list": [ { "ID": 6, "created_at": "2021-09-27T14:22:24+08:00", "generate_username": "SP6", "receive_username": "", "order_no": "202109271422240788170001", "order_type": 1, "generate_role": 3, "amount": 50, "pay_amount": 0, "commission": 0, "pay_mode": 0, "payment_real_name": "李欣", "payment_account": "", "collection_real_name": "", "collection_account_name": "", "collection_account_number": "", "collection_bank_name": "", "collection_url": "", "order_state": 1, "past_at": 1632725544, "receiving_at": "0001-01-01T00:00:00Z", "finish_at": "0001-01-01T00:00:00Z" } ], "total": 1, "page": 1, "pageSize": 10 } } ```