Authored by mali

接口文档

# 添加颜色接口
# 查询热销搜索词
> 接口名: `/productColor/addProductColor/`
> 接口名: `/searchWords/queryHotSearchTerms`
### 入参
-------------------------
|属性名称|类型|例子|说明|是否必填|
|--------|----|----|----|--------|
|colorName|string|X色|颜色名称|是|
|colorCode|string|FFFF|RGB code|是|
|colorValue|string|www.io.png|图片URL|是|
|page|number|1|当前页|默认1|
|size|number|20|条数|默认10|
---------------------
### 返回
### 返回 (只关注content字段)
``` json
{
"code":200,
"message":"success"
"code": 200,
"data": {
"list": [
{
"channelIds": "1,2",
"content": "hhhgg",
"creatorUid": 0,
"creatorUsrname": "wxtest1",
"id": 123,
"modifyUid": 0,
"modifyUsrname": "wxtest1",
"status": 2,
"type": 1,
"url": "hhh"
},
{
"channelIds": "1,2,3,4",
"content": "aaaa",
"creatorUid": 0,
"creatorUsrname": "wxtest1",
"id": 122,
"status": 2,
"type": 1,
"url": "aaaaa"
}
],
"page": 1,
"size": 2,
"total": 18,
"totalPage": 9
},
"md5": "3ead7bfd94211a4352e0edfb9d5afbf8",
"message": "查询搜索词列表"
}
```
\ No newline at end of file
... ...