...
|
...
|
@@ -180,4 +180,42 @@ http://127.0.0.1:8088/platform/SellerProductController/querySellerProductList?sh |
|
|
"message": "NetSale Product List error."
|
|
|
}
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## 2、导出商品列表##
|
|
|
|
|
|
查询商品列表(/SellerProductController/exportSellerProductList)
|
|
|
|
|
|
#### 请求参数(默认值都传null)
|
|
|
| 参数名称 | 参数类型 | 可否为空 | 示例 | 备注 |
|
|
|
|:-------| -----:|-----:|-----:|----:|
|
|
|
|shopId|int|否|店铺id||
|
|
|
|maxSortId|int|是|maxSortId||
|
|
|
|middleSortId|int|是|middleSortId||
|
|
|
|smallSortId|int|是|smallSortId||
|
|
|
|
|
|
注意,通用的头部没有列出。
|
|
|
|
|
|
请求示例(需要登录才能调用)
|
|
|
http://127.0.0.1:8088/platform/SellerProductController/exportSellerProductList?shopId=15
|
|
|
## 请求样例数据
|
|
|
``` json
|
|
|
正常返回:
|
|
|
商品导出_20170502145522.xlsx 和文件流
|
|
|
|
|
|
异常返回:
|
|
|
|
|
|
{
|
|
|
"code": 200,
|
|
|
"data": "没有需要导出的商品",
|
|
|
"message": "success"
|
|
|
}
|
|
|
|
|
|
{
|
|
|
"code": 200,
|
|
|
"data": "最多可以导出2000个SKN",
|
|
|
"message": "success"
|
|
|
}
|
|
|
``` |
|
|
\ No newline at end of file |
...
|
...
|
|