1012-门店详情
接口说明:
获取门店详情。
请求说明:
HTTP请求方式:POST
返回数据格式:JSON
请求路径:api/pbase/GetShopDetail
请求参数:
字段 | 类型 | 为空 | 长度 | 描述 |
---|---|---|---|---|
Code | string | 是 | 门店code (二选一填写) | |
Id | int | 是 | 页门店id |
返回参数:
字段 | 类型 | 描述 |
---|---|---|
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 | 区县 |
Remark | string | 渠道简介 |
ShopClassDesc | string | 门店类型描述 |
IsActive | bool | CRM上架状态 |
IsDelete | bool | 有效状态 |
IsVirtualShop | bool | 是否是虚拟店 |
CreateUser | string | 创建人 |
CreateDate | string | 创建时间 |
LastModifiedUser | string | 最后修改人 |
LastModifiedDate | string | 最后修改时间 |
IsRetailActive | bool | 分销店上架状态默认0 |
CrmGuiderCount | int | CRM门店营销导购上限 |
CrmGuiderCountCurrent | int | CRM门店现有营销导购人数 |
MallIsActive | bool | Mall门店是否启用 |
ShopClass | string | 自营,加盟,联营,代理,代销,托管 |
bool | 门店开业/暂停 |
请求参数示例代码(json对象):
{
"Code":"",
"Id": 14
}
系统级返回结果示例(json):
{
"Status": true,
"StatusCode": 200,
"Msg": "成功",
"Timestamp": "20150622093101",
"Sign": "6ECC9BF07C69E80F6D8552FF7B2E7A8FCA2CC80E",
"Result": 见业务返回结果示例,
}
业务返回结果示例(json):
{
"Id": 14,
"Code": "HQT001",
"Name": "天猫旗舰店",
"ChannelType": 1,
"ShopClass": 0,
"ShopClassDesc": "",
"IsDelete": false,
"IsActive": false,
"MallIsActive": false,
"Province": "上海市",
"City": "上海市",
"County": "闵行区",
"Address": "虹许路560号",
"ServiceTel": "18916610817",
"ServiceTel2": "18916610817",
"IsVirtualShop": false,
"Remark": "",
"CreateUser": "API",
"CreateDate": "2015-06-09 16:04:45",
"LastModifiedUser": "xc",
"LastModifiedDate": "2020-09-28 15:46:15",
"IsRetailActive": false,
"CrmShopTypeId": 0,
"CrmGuiderCount": 0,
"CrmGuiderCountCurrent": 0
}