...
|
...
|
@@ -150,3 +150,83 @@ |
|
|
}
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
# 获取店铺下该类目所选商品接口
|
|
|
|
|
|
> 接口名: `/ShopsSalesCategoryRest/selectCheckedProduct`
|
|
|
|
|
|
### 方法
|
|
|
|
|
|
> POST JSONRAW
|
|
|
|
|
|
### 入参
|
|
|
|
|
|
-------------------------
|
|
|
|属性名称|类型|例子|说明|是否必填|
|
|
|
|--------|----|----|---|----|
|
|
|
|shopsId|Number|7564|店铺ID|是|
|
|
|
|categoryId|Number|20|类目ID|是|
|
|
|
|productSKN|Number|50000055|商品SKN|否|
|
|
|
|factoryCode|String|D1XDSL250X1100|类目ID|否|
|
|
|
|
|
|
|
|
|
|
|
|
### 错误编码
|
|
|
|
|
|
-------------------------
|
|
|
|错误码code|消息|说明|
|
|
|
|--------|----|----|
|
|
|
|200| 删除店铺类目成功!| |
|
|
|
|500| 操作失败!| |
|
|
|
|
|
|
### 返回
|
|
|
|
|
|
``` json
|
|
|
{
|
|
|
"code": 200,
|
|
|
"data": {
|
|
|
"list": [
|
|
|
{
|
|
|
"checked": true,
|
|
|
"factoryCode": "D1XDSL250X1100",
|
|
|
"productName": "新的商品名称111222211",
|
|
|
"productSKN": 50000055,
|
|
|
"productSort": "创意生活-文具-本子",
|
|
|
"saleCategory": [
|
|
|
"更新"
|
|
|
],
|
|
|
"salePrice": 200
|
|
|
},
|
|
|
{
|
|
|
"checked": true,
|
|
|
"factoryCode": "",
|
|
|
"productName": "新的商品名称",
|
|
|
"productSKN": 50000056,
|
|
|
"productSort": "服配-配饰-挂饰",
|
|
|
"saleCategory": [
|
|
|
"更新"
|
|
|
],
|
|
|
"salePrice": 11
|
|
|
},
|
|
|
{
|
|
|
"checked": true,
|
|
|
"factoryCode": "",
|
|
|
"productName": "K*facto.2y拉链肩套头衫",
|
|
|
"productSKN": 50000057,
|
|
|
"productSort": "上衣-T恤-T恤",
|
|
|
"saleCategory": [
|
|
|
"更新"
|
|
|
],
|
|
|
"salePrice": 89
|
|
|
}
|
|
|
],
|
|
|
"page": 1,
|
|
|
"size": 20,
|
|
|
"total": 3,
|
|
|
"totalPage": 1
|
|
|
},
|
|
|
"message": "获取店铺下类目已关联商品列表成功!"
|
|
|
}
|
|
|
|
|
|
``` |
...
|
...
|
|