查询用户订单列表
GET
/app/mall/api/v1/user/order/list
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Query 参数
orderStatus
string
可选
示例值:
0
pageNum
integer
页数
pageSize
integer
条数
orderType
string
必需
示例值:
0
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://47.93.16.76:8080/app/mall/api/v1/user/order/list?orderStatus=0&pageNum&pageSize&orderType=0'
返回响应
🟢200成功
application/json
Body
msg
string
必需
code
integer
必需
data
array [object {6}]
必需
orderId
integer
订单id
orderCode
string
订单编码
orderStatus
string
必需
goodsList
array [object {11}]
商品信息
actualPrice
integer
实付款 分
payResidueTime
object
最后付款时间
示例
{
"msg": "操作成功",
"code": 200,
"data": [
{
"orderId": 3,
"orderCode": "516990462293184512",
"orderStatus": "0",
"goodsList": [
{
"createBy": null,
"createTime": "2023-11-27 14:55:32",
"updateBy": null,
"updateTime": null,
"remark": null,
"id": 5,
"orderId": 3,
"goodsId": 1,
"goodsName": "母亲节礼物-舒适安睡组合",
"goodsCode": "515091408151908352",
"productId": 10,
"goodsNum": 1,
"goodsPrice": 1001,
"specifications": "[\"1.8m床垫*1+枕头*2\",\"浅杏粉\"]",
"imgUrl": "http://yanxuan.nosdn.127.net/10022c73fa7aa75c2c0d736e96cc56d5.png?quality=90&thumbnail=200x200&imageView",
"comment": null,
"delFlag": "0"
}
],
"actualPrice": 1001
},
{
"orderId": 2,
"orderCode": "516980550460772352",
"orderStatus": "0",
"goodsList": [
{
"createBy": null,
"createTime": "2023-11-27 14:16:08",
"updateBy": null,
"updateTime": null,
"remark": null,
"id": 3,
"orderId": 2,
"goodsId": 1,
"goodsName": "母亲节礼物-舒适安睡组合",
"goodsCode": "515091408151908352",
"productId": 10,
"goodsNum": 4,
"goodsPrice": 1001,
"specifications": "[\"1.8m床垫*1+枕头*2\",\"浅杏粉\"]",
"imgUrl": "http://yanxuan.nosdn.127.net/10022c73fa7aa75c2c0d736e96cc56d5.png?quality=90&thumbnail=200x200&imageView",
"comment": null,
"delFlag": "0"
},
{
"createBy": null,
"createTime": "2023-11-27 14:16:08",
"updateBy": null,
"updateTime": null,
"remark": null,
"id": 4,
"orderId": 2,
"goodsId": 1,
"goodsName": "母亲节礼物-舒适安睡组合",
"goodsCode": "515091408151908352",
"productId": 11,
"goodsNum": 2,
"goodsPrice": 2000,
"specifications": "[\"1.8m床垫*1+枕头*2\",\"玛瑙红\"]",
"imgUrl": "quality=90&thumbnail=200x200&imageView",
"comment": null,
"delFlag": "0"
}
],
"actualPrice": 8004
}
]
}
修改于 2023-12-20 07:43:03