Authored by michaelcao

update

... ... @@ -58,7 +58,7 @@ code为200即为成功,否则是失败。 响应JSON格式如下所示:
| 参数名称 | 参数类型| 长度 |可否为空 |示例 |默认值 | 备注 |
| ---------|:--------:| --------:|-----:|------:|------:|------:|
| shopIds|数组| --------:|-----:|------:|------:|------:|
| params|string| --------:|-----:|{"shopIds":[888]}|------:|json字符串|
... ... @@ -67,44 +67,23 @@ code为200即为成功,否则是失败。 响应JSON格式如下所示:
注意,通用的头部没有列出。
192.168.102.210:8080/portal-gateway/ShopController/getShopListByIds?debug=XYZ
{
"shopIds":[888]
}
192.168.102.210:8080/portal-gateway/ShopController/getShopListByIds?debug=XYZ&params={"shopIds":[888]}
**响应**
code为200即为成功,否则是失败。 响应JSON格式如下所示:
{
"code": 200,
"message": "操作成功",
"md5": null,
"data": [
{
"blkOpenTime": 0,
"blkStatus": 0,
"checkStatus": 300,
"createPid": 100228,
"createTime": 1478764239,
"examineStatus": 1,
"openTime": 0,
"operationStatus": 2,
"otherUrl": "[]",
"shopAddress": "[]",
"shopDomain": "songchao",
"shopIntro": "",
"shopName": "songchao经典店铺",
"shopNature": 1,
"shopsId": 888,
"shopsType": 1,
"status": 1,
"updateTime": 1478766071,
"websiteUrl": "[]"
}
]
}
{
"code": 200,
"message": "操作成功",
"data": [
{
"id": 888,
"text": "songchao经典店铺"
}
]
}
# 三、 依据品牌id批量获取品牌列表(id,名称) 。 #
... ...