线下店潮流之旅--门店管理.md
1.84 KB
线下店资讯
目录
一、根据门店id获取门店信息:StoreController/getStoreInfoExtById
#一、根据门店id获取门店信息#
入口:StoreController/getStoreInfoExtById
请求参数
参数名称 | 参数类型 | 长度 | 可否为空 | 示例 | 默认值 | 备注 |
---|---|---|---|---|---|---|
storeId | int | 11 | 否 | 门店id |
请求示例 注意,通用的头部没有列出。
http://192.168.102.210:8080/portal-gateway/StoreController/getStoreInfoExtById?debug=XYZ&storeId=66
参数说明
thumbnailUrl:缩略图
pictureUrl:门店图片
introduction:门店简介
detail:门店详情
longitude:门店经度
latitude:门店纬度
address:门店地址
region_id:地区
telephone : 电话
响应
code为200即为成功,否则是失败。 响应JSON格式如下所示:
{
"code": 200,
"message": "success",
"data": {
"storeId": 66,
"regionId": 366,
"regionName": null,
"address": "中国",
"longitude": 11,
"latitude": 22,
"businessTime": "13131",
"telephone": "12312",
"thumbnailUrl": "http://img11.static.yhbimg.com/yhb-img01/2016/12/13/15/011a498ccbdbf41b5503ce7b1d22f30561.png",
"pictureUrl": "http://img10.static.yhbimg.com/yhb-img01/2016/12/13/15/01211e0480d91168936b485ec32c2a6b5c.png",
"introduction": "200字200字200字200字200字200字200字200字200字200字200字200字200字200字200字200字200字200字200字200字200字200字200字200字200字",
"createUserId": null,
"createTime": null,
"updateTime": 1481686533,
"detail": "<p>123<img src=\"http://img11.static.yhbimg.com/yhb-img01/2016/12/14/11/015e93efccb7202761119d4ed77f6adc5d.png\" title=\"\" alt=\"\"/></p>",
"storeName": "爱尚YohoKids",
"id": 66
}
}