订单详情
#### 请求URL:
-/game/gift/detail
#### 请求方式:
- POST
#### 请求头:
|参数名|是否必须|类型|默认值|说明|
|:------- |:---|:----- |:---|----- |
|Content-Type |是 |string|| application/json|
#### 请求body示例:
```
{
"id": 1,//订单列表中id
}
```
#### 返回示例:
```
{
"code": 200,
"result": {
"id": 1,
"title": "金牛座测试心愿",
"status": 0,//1待发货 2待收货 3完成
"imageSrc": "/path/imga.png" //缩略图
"createTime": "2021-09-11",//兑换时间
"num": 3,//兑换数量
"sn": "2023112323445",//订单号
"consignee": {
"name": "收货人",
"tel": "联系方式",
"address": "收货地址"
}
},
"message": ""
}
```