用户订单列表
请求地址: healthServiceOrders/listServiceOrders/{userId}
HTTP请求方式: GET
请求参数说明
| 参数名称 | 参数类型 | 参数说明 |
|---|---|---|
| userId | long | 用户的id |
| page | int | 页码 |
| size | int | 大小 |
响应结果示例
{
"ret_code": 0,
"ret_values": {
"content": [
{
"id": 1, // 订单id
"orderId": "1_1_1462507195252", // 订单号
"status": "有效", // 订单状态
"title": "健康套餐", // 订单名称
"price": 1000, // 订单价格,
"specificationImageUrl": "http://7xp6gb.com2.z0.glb.qiniucdn.com/pci/picture/pic2@2x.png", // 规格图片
"organizationName": "万达全程健康有限公司", // 组织名称
"organizationImageUrl": "http://7xp6gb.com2.z0.glb.qiniucdn.com/pci/picture/pic2@2x.png" // 组织图片
}
],
"last": true,
"totalElements": 1,
"totalPages": 1,
"size": 20,
"number": 0,
"sort": null,
"first": true,
"numberOfElements": 1
},
"message": "成功"
}