文档
测试

订单详情

POST
http://localhost:7090/api/product/orderProductDetail

请求头

参数名
类型
描述
必填
Cookie
string
cookie
必填

请求参数

参数名
类型
描述
必填
OrderNumber
string
订单号
必填

响应参数

参数名
类型
描述
必填
OrderNumber
strubg
订单编号
必填
AccreditId
商户编码
必填
CompanyName
商户名称
必填
Name
string
产品包名称
必填
ReleaseID
int
产品包ID
必填
AuditingState
int
服务状态 0 未处理 1 通过 2拒绝 3已取消订购 4关闭
必填
PayState
int
支付状态 0待支付,1已支付,2已取消,3已关闭
必填

说明 / 示例

## 原型 ![image.png](https://cos.easydoc.net/83650160/files/km4bwbjz.png) ## 返回结果 ```json { "code": 0, "data": { "OrderNumber": "2020013018000529", "AccreditId": 8001000001, "CompanyName": "广州海力物流集团有限公司", "Name": "集运系统集团版", "ReleaseID": 87, "AuditingState": 1, "PayState": 0, "ProductList": [ { "ProductID": 55, "Name": "集运系统", "Describe": "物流公司专属,拥有订单模块、运输中心模块" }, { "ProductID": 71, "Name": "集卡系统", "Describe": "拖车承运商系统" }, { "ProductID": 77, "Name": "集运拖车运输", "Describe": "集运系统下的拖车子系统" } ] } } ```