...
|
...
|
@@ -66,33 +66,41 @@ |
|
|
```
|
|
|
|
|
|
|
|
|
# 添加(更新)产品属性接口
|
|
|
# 添加产品属性接口
|
|
|
|
|
|
> 接口名: `/product/updateAttr`
|
|
|
> 接口名: `/product/addProductAttribute`
|
|
|
|
|
|
### 入参
|
|
|
|
|
|
-------------------------
|
|
|
|属性名称|类型|例子|说明|是否必填|
|
|
|
|--------|----|----|----|--------|
|
|
|
|attrName|string|衣长|属性名称|未知|
|
|
|
|saleType|string|非销售属性|销售类型|未知|
|
|
|
|inputType|string|单选按钮|输入类型|未知|
|
|
|
|enableSearch|boolean|true|启用搜索|未知|
|
|
|
|maxVal|number|50|最大输入值|未知|
|
|
|
|hasAlias|boolean|true|是否允许别名|未知|
|
|
|
|attrSort|number|0|排序|未知|
|
|
|
|attrAttr|string|abc|属性值|未知|
|
|
|
|attrComment|string|abc|备注|否|
|
|
|
|id|int|1|商品属性ID|
|
|
|
|attributeName|string|衣长|属性名称|未知|
|
|
|
|categoryId|number|6|属性名称|未知|
|
|
|
|saleType|number|1|销售类型|未知|
|
|
|
|inputType|string|checkbox|输入类型|未知|
|
|
|
|attributeType|number|2|属性类型|未知|
|
|
|
|isMust|String|N|不是必选|未知|
|
|
|
|isSearch|String|Y|启动搜索|未知|
|
|
|
|maxValueLen|number|50|最大输入值|未知|
|
|
|
|isColor|String|N|没有颜色|未知|
|
|
|
|isAllowAlias|String|N|是否允许别名|未知|
|
|
|
|orderBy|number|0|排序|未知|
|
|
|
|state|number|1|状态|未知|
|
|
|
|remark|string|abc|备注|否|
|
|
|
|attributeValues|string|反光,毛呢,网布,皮革,麻,帆布|属性值|未知|
|
|
|
|belong|number|1|未知|未知|
|
|
|
|displayPosition|int|1|展示位置|
|
|
|
---------------------
|
|
|
|
|
|
### 返回
|
|
|
|
|
|
``` json
|
|
|
{
|
|
|
"code":200,
|
|
|
"message":"添加成功!"
|
|
|
"code": 200,
|
|
|
"data": [],
|
|
|
"md5": "d751713988987e9331980363e24189ce",
|
|
|
"message": "Product Attribute Add success."
|
|
|
}
|
|
|
|
|
|
```
|
...
|
...
|
|