订单列表
#### 请求URL:
-/game/gift
#### 请求方式:
- POST
#### 请求头:
|参数名|是否必须|类型|默认值|说明|
|:------- |:---|:----- |:---|----- |
|Content-Type |是 |string|| application/json|
#### 请求body示例:
```
{
"pageIndex": 1,//页码数
"pageSize": 20,//每页数量
"status": 0, //0全部 1待发货 2待收货 3完成
}
```
#### 返回示例:
```
{
"code": 200,
"result": {
"content": [
{
"id": 1,
"title": "金牛座测试心愿",
"status": 0,//1待发货 2待收货 3完成
"imageSrc": "/path/imga.png" //缩略图
"createTime": "2021-09-11",//兑换时间
"num": 3,//兑换数量
}
],
"total": 5
},
"message": ""
}
```