Authored by tanling

Update ShopReportController.md

... ... @@ -586,58 +586,145 @@ code为200即为成功,否则是失败。
#### 请求参数
| 参数名称 | 参数类型 | 可否为空 | 示例 | 备注 |
|:-------| -----:|-----:|-----:|----:|
|page|int|是|2|第几页|
|size|int|是|10|每页条数|
|shopId|int|否|17|是|店铺ID |
|brandId|int|否|17|是|品牌 |
注意,通用的头部没有列出。
请求示例
http://192.168.102.217:8080/gateway?method=app.shops.balance
http://192.168.102.217:8080/gateway?method=app.shops.accountbalance&shopId=19
## 请求样例数据
```json
{
"page": 1,
"size": 2
}
```
### 响应
code为200即为成功,否则是失败。
响应JSON格式如下所示:
```json
{
"alg": "SALT_MD5",
"code": 200,
"data": {
"additionInfo": {
"allAmountRate": 2977817.56,//累计结算金额
},
"list": [
{
"brandId": 144,//品牌ID
"brandName": "VANS", //品牌
"dateId": 1,//生成日期
"stateId": 2,//状态
"orderAmount": 665,//金额
}
],
"page": 1,
"size": 10,
"total": 14612,
"totalPage": 1462
},
"md5": "ce4964c1e6defece5035c81b63c3c51d",
"message": "getOrdersGoodsRptList result"
}
"alg": "SALT_MD5",
"code": 200,
"data": {
"list": [],
"totalAmount": "0"
},
"md5": "5be8d6a4156c32dfb70e50d0e3bec351",
"message": "调用服务成功"
}
```
```json
{
"code": 405,
"data": [],
"md5": "d751713988987e9331980363e24189ce",
"message": "getOrdersGoodsRptList"
}
{
"alg": "SALT_MD5",
"code": 200,
"data": {
"list": [
{
"brandId": "308",
"brandName": "SOLO",
"createTime": "2014-03-11",
"status": "1",
"totalprice": "29285.2500"
},
{
"brandId": "308",
"brandName": "SOLO",
"createTime": "2014-04-08",
"status": "1",
"totalprice": "41928.4500"
},
{
"brandId": "308",
"brandName": "SOLO",
"createTime": "2014-05-08",
"status": "1",
"totalprice": "46256.9255"
},
{
"brandId": "308",
"brandName": "SOLO",
"createTime": "2014-06-05",
"status": "1",
"totalprice": "40341.0660"
},
{
"brandId": "308",
"brandName": "SOLO",
"createTime": "2014-07-08",
"status": "1",
"totalprice": "27162.3350"
},
{
"brandId": "308",
"brandName": "SOLO",
"createTime": "2014-08-06",
"status": "1",
"totalprice": "39599.0650"
},
{
"brandId": "308",
"brandName": "SOLO",
"createTime": "2014-09-09",
"status": "1",
"totalprice": "47533.3160"
},
{
"brandId": "308",
"brandName": "SOLO",
"createTime": "2014-10-14",
"status": "1",
"totalprice": "48459.7415"
},
{
"brandId": "308",
"brandName": "SOLO",
"createTime": "2014-11-04",
"status": "1",
"totalprice": "62814.8335"
},
{
"brandId": "308",
"brandName": "SOLO",
"createTime": "2014-12-10",
"status": "1",
"totalprice": "42478.5665"
},
{
"brandId": "308",
"brandName": "SOLO",
"createTime": "2015-01-08",
"status": "1",
"totalprice": "66525.2961"
},
{
"brandId": "308",
"brandName": "SOLO",
"createTime": "2015-02-06",
"status": "1",
"totalprice": "66729.3355"
},
{
"brandId": "308",
"brandName": "SOLO",
"createTime": "2015-03-06",
"status": "1",
"totalprice": "57497.1935"
},
{
"brandId": "308",
"brandName": "SOLO",
"createTime": "2015-04-07",
"status": "1",
"totalprice": "70426.4110"
},
{
"brandId": "308",
"brandName": "SOLO",
"createTime": "2015-05-06",
"status": "1",
"totalprice": "51708.4820"
}
],
"totalAmount": "738746.2671"
},
"md5": "2dd1db4f3f313ce85e99bea30faea44c",
"message": "调用服务成功"
}
```
\ No newline at end of file
... ...