接口说明:
获取店铺数据。
请求说明:
HTTP请求方式:POST
返回数据格式:JSON
请求路径:api/pbase/shopgetlst
请求参数:
字段 | 类型 | 为空 | 长度 | 描述 |
PageIndex | int | 否 | 页号,从1开始 | |
PageSize | int | 否 | 页大小,从1开始,小于10000 |
返回参数:
字段 | 类型 | 描述 |
Id | int | EZR系统编号 |
Code | string | 门店编码 |
Name | string | 门店名称 |
AltName | string | 简称 |
ChannelType | int | 渠道类型 1=线上,0=线下 |
ServiceTel | string | 服务电话1 |
ServiceTel2 | string | 服务电话2 |
Province | string | 省份 |
City | string | 城市 |
County | string | 区县 |
Address | string | 详细地址 |
Longitude | double | 经度 |
Latitude | double | 维度 |
Area | int | 面积 |
OpenDate | string | 营业时间 |
OpenPeople | int | 营业人数 |
LogoUrl | string | 门店门头logo |
IsActive | bool | Crm门店是否已上架 |
MallIsActive | bool | Mall门店是否启用 |
ShopClass | string | 自营,加盟,联营,代理,代销,托管 |
请求参数示例代码(json对象):
{ "PageIndex": 1, "PageSize": 1000 }
系统级返回结果示例(json):
{ "Status": true, "StatusCode": 200, "Msg": "成功", "Timestamp": "20150622093101", "Sign": "6ECC9BF07C69E80F6D8552FF7B2E7A8FCA2CC80E", "Result": 见业务返回结果示例, }
业务返回结果示例(json):
[{ "Id": 12390, "Code": "HQ01S001", "Name": "测试门店", "AltName": "", "ChannelType": 1, "ServiceTel": "", "ServiceTel2": "", "Province": "上海", "City": "上海市", "County": "徐汇区", "Address": "", "Longitude": 0, "Latitude": 0, "Area": 0, "OpenDate": "09:30-21:00", "OpenPeople": "3", "LogoUrl": "", "IsActive":true, "MallIsActive":true }, { ...... }]