Authored by mali

接口

... ... @@ -303,4 +303,74 @@
"message": "save netSale Recommend success."
}
```
# 展示店铺的数据源
> 接口名: `/ShopsRest/getShopList`
### 入参 {"brandId":928}
-------------------------
|属性名称|类型|例子|说明|是否必填|
|--------|----|----|----|--------|
|brandId|number||商品所属品牌Id|必填|
---------------------
### 返回 (关注list里面的id 和 text)
``` json
{
"code": 200,
"data": {
"list": [
{
"checkStatus": 100,
"createTime": "2015-09-15",
"id": 18,
"shopName": "得宝纸巾单品专卖店【测试】",
"shopNature": 0,
"shopsId": 18,
"shopsType": 0,
"status": 1,
"text": "得宝纸巾单品专卖店【测试】",
"updateTime": "2016-02-18"
},
{
"checkStatus": 100,
"createTime": "2015-09-11",
"id": 16,
"shopName": ":CHOCOOLATEQ",
"shopNature": 0,
"shopsId": 16,
"shopsType": 0,
"status": 1,
"text": ":CHOCOOLATEQ",
"updateTime": "2016-02-18"
},
{
"checkStatus": 100,
"createTime": "2015-09-11",
"id": 15,
"shopName": "得宝旗舰店",
"shopNature": 0,
"shopsId": 15,
"shopsType": 0,
"status": 1,
"text": "得宝旗舰店",
"updateTime": "2016-02-17"
}
],
"page": 1,
"size": 10,
"total": 3,
"totalPage": 1
},
"message": "操作成功"
}
```
\ No newline at end of file
... ...