shopCategory.md
4.36 KB
店铺销售类目列表接口
接口名:
/ShopsSalesCategoryRest/shopsCategoryList
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 |
---|---|---|---|---|
shopsId | Number | 7564 | 店铺ID | 是 |
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 获取类目列表成功! | |
500 | 操作失败! |
返回
{
"code": 200,
"data": [],
"message": "获取类目列表成功!"
}
新增店铺类目并关联商品接口
接口名:
/ShopsSalesCategoryRest/insertShopsAndLinkCategory
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 |
---|---|---|---|---|
shopsId | Number | 7564 | 店铺ID | 是 |
categoryName | String | "测试" | 类目名称 | 是 |
productSKN | LIST | [50000055,50000056,50000057] | 产品SKN | 否 |
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 新增店铺类目并关联商品成功! | |
500 | 操作失败! |
返回
{
"code": 200,
"message": "新增店铺类目并关联商品成功!"
}
编辑店铺类目并且关联商品接口
接口名:
/ShopsSalesCategoryRest/updateShopsAndLinkCategory
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 |
---|---|---|---|---|
shopsId | Number | 7564 | 店铺ID | 是 |
categoryId | Number | 20 | 类目ID | 是 |
categoryName | String | "更新" | 类目名称 | 是 |
productSKN | LIST | [50000055,50000056,50000057] | 产品SKN | 否 |
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 更新店铺类目并关联商品成功! | |
500 | 操作失败! |
返回
{
"code": 200,
"message": "更新店铺类目并关联商品成功!"
}
删除店铺类目接口
接口名:
/ShopsSalesCategoryRest/deleteShopsCategory
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 |
---|---|---|---|---|
shopsId | Number | 7564 | 店铺ID | 是 |
categoryId | Number | 20 | 类目ID | 是 |
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 删除店铺类目成功! | |
500 | 操作失败! |
返回
{
"code": 200,
"message": "删除店铺类目成功!"
}
获取店铺下该类目所选商品接口
接口名:
/ShopsSalesCategoryRest/selectCheckedProduct
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 |
---|---|---|---|---|
shopsId | Number | 7564 | 店铺ID | 是 |
categoryId | Number | 20 | 类目ID | 是 |
productSKN | Number | 50000055 | 商品SKN | 否 |
factoryCode | String | D1XDSL250X1100 | 类目ID | 否 |
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 删除店铺类目成功! | |
500 | 操作失败! |
返回
{
"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": "获取店铺下类目已关联商品列表成功!"
}