# 订单商品明细
# 简要描述
- 订单商品明细查询,查询频次1秒限定1次
# 请求URL
/openapi/common/schoolOpenApi/queryOrderDetails/v1
提示
支持三方合作方调用,需要使用门店ID和密钥进行加签请求
# 请求方式
- get
# 业务参数
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
orderSource | 否 | string | 订单来源 |
orderNumber | 是 | string | 订单号 |
# 返回示例
{
"msg": null,
"code": 200,
"obj": [
{
"foodOpenPic": "",
"orderId": null,
"totalPrice": 250,
"imagePath": null,
"foodId": null,
"yieldTime": "",
"updateTime": null,
"delFlag": 1,
"foodProvider": null,
"qualityTime": "",
"number": 1,
"foodName": "未设置",
"createTime": null,
"price": 250,
"name": null,
"id": null
}
],
"sign": "833e93a4d0a15af060c334055a635849"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 返回参数说明
参数名 | 类型 | 说明 |
---|---|---|
foodNum | string | 商品编号 |
foodName | string | 商品名称 |
price | double | 商品单价 单位:分 |
totalPrice | double | 商品总价 单位:分 |
foodOpenPic | string | 商品图片地址 |
yieldTime | string | 生产日期 |
foodProvider | string | 商品供应商 |
batchNum | string | 生产批次 |
qualityTime | string | 保质期 |
foodOpenPic | string | 商品三方图片 |