Authored by caoyan

update

@@ -66,33 +66,41 @@ @@ -66,33 +66,41 @@
66 ``` 66 ```
67 67
68 68
69 -# 添加(更新)产品属性接口 69 +# 添加产品属性接口
70 70
71 -> 接口名: `/product/updateAttr` 71 +> 接口名: `/product/addProductAttribute`
72 72
73 ### 入参 73 ### 入参
74 74
75 ------------------------- 75 -------------------------
76 |属性名称|类型|例子|说明|是否必填| 76 |属性名称|类型|例子|说明|是否必填|
77 |--------|----|----|----|--------| 77 |--------|----|----|----|--------|
78 -|attrName|string|衣长|属性名称|未知|  
79 -|saleType|string|非销售属性|销售类型|未知|  
80 -|inputType|string|单选按钮|输入类型|未知|  
81 -|enableSearch|boolean|true|启用搜索|未知|  
82 -|maxVal|number|50|最大输入值|未知|  
83 -|hasAlias|boolean|true|是否允许别名|未知|  
84 -|attrSort|number|0|排序|未知|  
85 -|attrAttr|string|abc|属性值|未知|  
86 -|attrComment|string|abc|备注|否|  
87 -|id|int|1|商品属性ID| 78 +|attributeName|string|衣长|属性名称|未知|
  79 +|categoryId|number|6|属性名称|未知|
  80 +|saleType|number|1|销售类型|未知|
  81 +|inputType|string|checkbox|输入类型|未知|
  82 +|attributeType|number|2|属性类型|未知|
  83 +|isMust|String|N|不是必选|未知|
  84 +|isSearch|String|Y|启动搜索|未知|
  85 +|maxValueLen|number|50|最大输入值|未知|
  86 +|isColor|String|N|没有颜色|未知|
  87 +|isAllowAlias|String|N|是否允许别名|未知|
  88 +|orderBy|number|0|排序|未知|
  89 +|state|number|1|状态|未知|
  90 +|remark|string|abc|备注|否|
  91 +|attributeValues|string|反光,毛呢,网布,皮革,麻,帆布|属性值|未知|
  92 +|belong|number|1|未知|未知|
  93 +|displayPosition|int|1|展示位置|
88 --------------------- 94 ---------------------
89 95
90 ### 返回 96 ### 返回
91 97
92 ``` json 98 ``` json
93 { 99 {
94 - "code":200,  
95 - "message":"添加成功!" 100 + "code": 200,
  101 + "data": [],
  102 + "md5": "d751713988987e9331980363e24189ce",
  103 + "message": "Product Attribute Add success."
96 } 104 }
97 105
98 ``` 106 ```