Authored by mali

获取审核tab页商品数量

... ... @@ -1449,6 +1449,8 @@
# 保存参数
> 接口名: `/product/saveProductParam`
... ... @@ -1736,3 +1738,48 @@
}
```
# 获取审核tab页商品数量
> 接口名: `/product/queryTabCheck`
### 入参
{"isScreen":"N"}
-------------------------
|属性名称|类型|例子|说明|是否必填|
|--------|----|----|----|--------|
|productSkn|number||商品skn||
|productSkc|number||商品skc||
|productSku|number||商品sku||
|productName|字符串||名称||
|shopId|number||店铺Id||
|brandId|number||品牌Id||
|isJit|枚举型(字符串)||是否jit商品|"Y" 或者 "N"|
|stock|枚举型(数字型)||是否有库存|0 或者 1|
|isScreen|枚举型||是否拍摄状态|"Y" 或者 "N"|
|isMeasure|枚举型||是否测量状态|"Y" 或者 "N"|
|gender|枚举型||性别|1男2女 3通用|
|maxSortId|数字型||一级分类Id||
|middleSortId|数字型||二级分类Id||
|smallSortId|数字型||三级分类Id||
|isOutLets|枚举型||是否奥莱|"Y" 或者 "N"|
---------------------
### 返回
``` JSON
{
"code": 200,
"data": {
"1": 2,
"2": 3,
"3": 0
},
"md5": "7a00abc3b20f0fcef16a085a753892e4",
"message": "num"
}
```
... ...