版权所有©,上海海鼎信息工程股份有限公司,2016-2025,保留所有权利。
1. 接口定义
1.1. 仓库服务
1.1.1. 批量修改或保存仓库
POST /{tenant_id}/merchant/warehouseservice/warehouse/updates
1.1.1.1. 说明
批量修改或保存仓库
1.1.1.2. 参数
类型 | 名称 | 说明 | 类型 |
---|---|---|---|
Path |
tenant_id |
租户ID |
string |
Query |
operator |
操作人 |
string |
Body |
warehouses |
仓库列表 |
1.1.1.3. 响应
HTTP代码 | 说明 | 类型 |
---|---|---|
200 |
successful operation |
1.1.1.4. HTTP请求示例
请求 path
/string/merchant/warehouseservice/warehouse/updates?operator=string
请求 body
{
"warehouses" : [ {
"code" : "00001",
"name" : "广州仓",
"gid" : "gid",
"location" : {
"province" : "福建",
"city" : "厦门",
"district" : "湖里",
"street" : "金山街道226",
"area" : "北区",
"lat" : 123.0,
"lng" : 64.0,
"province_code" : "365",
"city_code" : "01",
"district_code" : "13"
},
"contact" : {
"phone" : "string"
},
"logistics_center_id" : "00001",
"logistics_center_name" : "广州物流中行"
} ]
}
1.1.1.5. HTTP响应示例
响应 200
{
"success" : true,
"code" : "string",
"message" : "string"
}
1.2. 门店服务
1.2.1. 创建门店信息
POST /{tenant_id}/merchant/storeservice/store
1.2.1.1. 说明
创建门店信息
1.2.1.2. 参数
类型 | 名称 | 说明 | 类型 |
---|---|---|---|
Path |
tenant_id |
租户ID |
string |
Query |
operator |
操作人 |
string |
Body |
store |
门店对象 |
1.2.1.3. 响应
HTTP代码 | 说明 | 类型 |
---|---|---|
default |
successful operation |
无内容 |
1.2.1.4. HTTP请求示例
请求 path
/string/merchant/storeservice/store?operator=string
请求 body
{
"id" : "2345456",
"name" : "阳光店",
"state" : "opened",
"type" : "self",
"location" : {
"province" : "福建",
"city" : "厦门",
"district" : "湖里",
"street" : "金山街道226",
"area" : "北区",
"lat" : 123.0,
"lng" : 64.0,
"province_code" : "365",
"city_code" : "01",
"district_code" : "13"
},
"contact" : {
"name" : "李飞",
"phone" : "18676778787"
},
"remark" : "第二个路口左转",
"gid" : "gid",
"distance" : 100.0,
"circles" : [ "string" ],
"region" : {
"id" : "2345456",
"name" : "阳光店",
"mgr_wechat_work_id" : "123456"
},
"tags" : [ {
"name" : "string"
} ],
"business_type" : "early_education",
"business_hours" : "10:00-12:00;14:00-21:00",
"main_image_url" : "string",
"image_urls" : [ "string" ],
"open_date" : "2018-06-01 00:00:00",
"sap_code" : "sapCode",
"source_sys" : "HDPOS4",
"tax_no" : "1245",
"account_no" : "1245",
"account_name" : "1245",
"customs_fields" : [ {
"id" : "area_id",
"name" : "地区代码",
"value" : "ET09"
} ],
"operation_manager" : {
"id" : "string",
"name" : "string"
},
"area_leader" : {
"id" : "string",
"name" : "string"
}
}
1.2.2. 查找指定租户的门店
GET /{tenant_id}/merchant/storeservice/store
1.2.2.1. 说明
查找指定租户的门店
1.2.2.2. 参数
类型 | 名称 | 说明 | 类型 |
---|---|---|---|
Path |
tenant_id |
租户ID |
string |
Query |
id |
门店ID |
string |
1.2.2.3. 响应
HTTP代码 | 说明 | 类型 |
---|---|---|
200 |
successful operation |
1.2.2.4. HTTP请求示例
请求 path
/string/merchant/storeservice/store?id=string
1.2.2.5. HTTP响应示例
响应 200
{
"id" : "2345456",
"name" : "阳光店",
"state" : "opened",
"type" : "self",
"location" : {
"province" : "福建",
"city" : "厦门",
"district" : "湖里",
"street" : "金山街道226",
"area" : "北区",
"lat" : 123.0,
"lng" : 64.0,
"province_code" : "365",
"city_code" : "01",
"district_code" : "13"
},
"contact" : {
"name" : "李飞",
"phone" : "18676778787"
},
"remark" : "第二个路口左转",
"gid" : "gid",
"distance" : 100.0,
"circles" : [ "string" ],
"region" : {
"id" : "2345456",
"name" : "阳光店",
"mgr_wechat_work_id" : "123456"
},
"tags" : [ {
"name" : "string"
} ],
"business_type" : "early_education",
"business_hours" : "10:00-12:00;14:00-21:00",
"main_image_url" : "string",
"image_urls" : [ "string" ],
"open_date" : "2018-06-01 00:00:00",
"sap_code" : "sapCode",
"source_sys" : "HDPOS4",
"tax_no" : "1245",
"account_no" : "1245",
"account_name" : "1245",
"customs_fields" : [ {
"id" : "area_id",
"name" : "地区代码",
"value" : "ET09"
} ],
"operation_manager" : {
"id" : "string",
"name" : "string"
},
"area_leader" : {
"id" : "string",
"name" : "string"
}
}
1.2.3. 修改门店信息
POST /{tenant_id}/merchant/storeservice/store/{id}
1.2.3.1. 说明
修改门店信息
1.2.3.2. 参数
类型 | 名称 | 说明 | 类型 |
---|---|---|---|
Path |
id |
门店ID |
string |
Path |
tenant_id |
租户ID |
string |
Query |
operator |
操作人 |
string |
Body |
mod |
修改信息 |
1.2.3.3. 响应
HTTP代码 | 说明 | 类型 |
---|---|---|
200 |
successful operation |
1.2.3.4. HTTP请求示例
请求 path
/string/merchant/storeservice/store/string?operator=string
请求 body
{
"name" : "阳光店",
"state" : "opened",
"type" : "self",
"location" : {
"province" : "福建",
"city" : "厦门",
"district" : "湖里",
"street" : "金山街道226",
"area" : "北区",
"lat" : 123.0,
"lng" : 64.0,
"province_code" : "365",
"city_code" : "01",
"district_code" : "13"
},
"contact" : {
"name" : "李飞",
"phone" : "18676778787"
},
"remark" : "第二个路口左转",
"circles" : [ "string" ],
"gid" : "string",
"region" : {
"id" : "2345456",
"name" : "阳光店",
"mgr_wechat_work_id" : "123456"
},
"tags" : [ {
"name" : "string"
} ],
"sap_code" : "string",
"business_hours" : "08:00-10:00;12:00-14:00",
"source_sys" : "HDPOS4",
"business_type" : "early_education",
"tax_no" : "1245",
"account_no" : "1245",
"account_name" : "1245",
"operation_manager" : {
"id" : "string",
"name" : "string"
},
"area_leader" : {
"id" : "string",
"name" : "string"
}
}
1.2.3.5. HTTP响应示例
响应 200
{
"success" : true,
"code" : "string",
"message" : "string"
}
1.2.4. 查询单个门店详情
GET /{tenant_id}/merchant/storeservice/store/{id}
1.2.4.1. 说明
查询单个门店详情
1.2.4.2. 参数
类型 | 名称 | 说明 | 类型 |
---|---|---|---|
Path |
id |
门店ID |
string |
Path |
tenant_id |
租户ID |
string |
1.2.4.3. 响应
HTTP代码 | 说明 | 类型 |
---|---|---|
200 |
successful operation |
1.2.4.4. HTTP请求示例
请求 path
/string/merchant/storeservice/store/string
1.2.4.5. HTTP响应示例
响应 200
{
"id" : "2345456",
"name" : "阳光店",
"state" : "opened",
"type" : "self",
"location" : {
"province" : "福建",
"city" : "厦门",
"district" : "湖里",
"street" : "金山街道226",
"area" : "北区",
"lat" : 123.0,
"lng" : 64.0,
"province_code" : "365",
"city_code" : "01",
"district_code" : "13"
},
"contact" : {
"name" : "李飞",
"phone" : "18676778787"
},
"remark" : "第二个路口左转",
"gid" : "gid",
"distance" : 100.0,
"circles" : [ "string" ],
"region" : {
"id" : "2345456",
"name" : "阳光店",
"mgr_wechat_work_id" : "123456"
},
"tags" : [ {
"name" : "string"
} ],
"business_type" : "early_education",
"business_hours" : "10:00-12:00;14:00-21:00",
"main_image_url" : "string",
"image_urls" : [ "string" ],
"open_date" : "2018-06-01 00:00:00",
"sap_code" : "sapCode",
"source_sys" : "HDPOS4",
"tax_no" : "1245",
"account_no" : "1245",
"account_name" : "1245",
"customs_fields" : [ {
"id" : "area_id",
"name" : "地区代码",
"value" : "ET09"
} ],
"operation_manager" : {
"id" : "string",
"name" : "string"
},
"area_leader" : {
"id" : "string",
"name" : "string"
}
}
1.2.5. 批量获得门店信息
GET /{tenant_id}/merchant/storeservice/stores
1.2.5.1. 说明
批量获得门店信息
1.2.5.2. 参数
类型 | 名称 | 说明 | 类型 |
---|---|---|---|
Query |
id |
门店ID集合 |
< string > array(multi) |
Query |
org_id |
企业ID |
string |
1.2.5.3. 响应
HTTP代码 | 说明 | 类型 |
---|---|---|
200 |
successful operation |
1.2.5.4. HTTP请求示例
请求 path
/{tenant_id}/merchant/storeservice/stores?id=string&org_id=string
1.2.5.5. HTTP响应示例
响应 200
{
"stores" : [ {
"id" : "2345456",
"name" : "阳光店",
"state" : "opened",
"type" : "self",
"location" : {
"province" : "福建",
"city" : "厦门",
"district" : "湖里",
"street" : "金山街道226",
"area" : "北区",
"lat" : 123.0,
"lng" : 64.0,
"province_code" : "365",
"city_code" : "01",
"district_code" : "13"
},
"contact" : {
"name" : "李飞",
"phone" : "18676778787"
},
"remark" : "第二个路口左转",
"gid" : "gid",
"distance" : 100.0,
"circles" : [ "string" ],
"region" : {
"id" : "2345456",
"name" : "阳光店",
"mgr_wechat_work_id" : "123456"
},
"tags" : [ {
"name" : "string"
} ],
"business_type" : "early_education",
"business_hours" : "10:00-12:00;14:00-21:00",
"main_image_url" : "string",
"image_urls" : [ "string" ],
"open_date" : "2018-06-01 00:00:00",
"sap_code" : "sapCode",
"source_sys" : "HDPOS4",
"tax_no" : "1245",
"account_no" : "1245",
"account_name" : "1245",
"customs_fields" : [ {
"id" : "area_id",
"name" : "地区代码",
"value" : "ET09"
} ],
"operation_manager" : {
"id" : "string",
"name" : "string"
},
"area_leader" : {
"id" : "string",
"name" : "string"
}
} ]
}
1.2.6. 定位附近的门店
GET /{tenant_id}/merchant/storeservice/stores/location
1.2.6.1. 说明
定位附近的门店
1.2.6.2. 参数
类型 | 名称 | 说明 | 类型 |
---|---|---|---|
Path |
tenant_id |
租户ID |
string |
Query |
count |
附近门店数量, null 为空默认查询30家 |
integer (int32) |
Query |
lat |
纬度 |
number |
Query |
lng |
经度 |
number |
1.2.6.3. 响应
HTTP代码 | 说明 | 类型 |
---|---|---|
200 |
successful operation |
1.2.6.4. HTTP请求示例
请求 path
/string/merchant/storeservice/stores/location?lat=0.0&lng=0.0
1.2.6.5. HTTP响应示例
响应 200
{
"stores" : [ {
"id" : "2345456",
"name" : "阳光店",
"state" : "opened",
"type" : "self",
"location" : {
"province" : "福建",
"city" : "厦门",
"district" : "湖里",
"street" : "金山街道226",
"area" : "北区",
"lat" : 123.0,
"lng" : 64.0,
"province_code" : "365",
"city_code" : "01",
"district_code" : "13"
},
"contact" : {
"name" : "李飞",
"phone" : "18676778787"
},
"remark" : "第二个路口左转",
"gid" : "gid",
"distance" : 100.0,
"circles" : [ "string" ],
"region" : {
"id" : "2345456",
"name" : "阳光店",
"mgr_wechat_work_id" : "123456"
},
"tags" : [ {
"name" : "string"
} ],
"business_type" : "early_education",
"business_hours" : "10:00-12:00;14:00-21:00",
"main_image_url" : "string",
"image_urls" : [ "string" ],
"open_date" : "2018-06-01 00:00:00",
"sap_code" : "sapCode",
"source_sys" : "HDPOS4",
"tax_no" : "1245",
"account_no" : "1245",
"account_name" : "1245",
"customs_fields" : [ {
"id" : "area_id",
"name" : "地区代码",
"value" : "ET09"
} ],
"operation_manager" : {
"id" : "string",
"name" : "string"
},
"area_leader" : {
"id" : "string",
"name" : "string"
}
} ]
}
1.2.7. 分页查询门店
POST /{tenant_id}/merchant/storeservice/stores/query
1.2.7.1. 说明
分页查询门店
1.2.7.2. 参数
类型 | 名称 | 说明 | 类型 |
---|---|---|---|
Path |
tenant_id |
租户ID |
string |
Query |
desc |
是否倒序 |
boolean |
Query |
page |
页码 |
integer (int32) |
Query |
page_size |
分页大小 |
integer (int32) |
Query |
sort_key |
排序字段 |
string |
Body |
filter |
查询过滤器 |
1.2.7.3. 响应
HTTP代码 | 说明 | 类型 |
---|---|---|
200 |
successful operation |
1.2.7.4. HTTP请求示例
请求 path
/string/merchant/storeservice/stores/query?desc=true&page=0&page_size=0
请求 body
{
"id" : "1323230",
"states" : "opened",
"types" : "self",
"circles" : [ "string" ],
"store_ids" : [ "string" ],
"business_types" : [ "string" ],
"key_like" : "2134",
"latitude_start" : 65.0,
"latitude_end" : 89.0,
"longtitude_start" : 110.0,
"longtitude_end" : 120.0,
"modified_start" : "2018-09-07 00:00:00",
"modified_end" : "2018-09-07 00:00:00"
}
1.2.7.5. HTTP响应示例
响应 200
{
"total" : 100,
"page" : 1,
"stores" : [ {
"id" : "2345456",
"name" : "阳光店",
"state" : "opened",
"type" : "self",
"location" : {
"province" : "福建",
"city" : "厦门",
"district" : "湖里",
"street" : "金山街道226",
"area" : "北区",
"lat" : 123.0,
"lng" : 64.0,
"province_code" : "365",
"city_code" : "01",
"district_code" : "13"
},
"contact" : {
"name" : "李飞",
"phone" : "18676778787"
},
"remark" : "第二个路口左转",
"gid" : "gid",
"distance" : 100.0,
"circles" : [ "string" ],
"region" : {
"id" : "2345456",
"name" : "阳光店",
"mgr_wechat_work_id" : "123456"
},
"tags" : [ {
"name" : "string"
} ],
"business_type" : "early_education",
"business_hours" : "10:00-12:00;14:00-21:00",
"main_image_url" : "string",
"image_urls" : [ "string" ],
"open_date" : "2018-06-01 00:00:00",
"sap_code" : "sapCode",
"source_sys" : "HDPOS4",
"tax_no" : "1245",
"account_no" : "1245",
"account_name" : "1245",
"customs_fields" : [ {
"id" : "area_id",
"name" : "地区代码",
"value" : "ET09"
} ],
"operation_manager" : {
"id" : "string",
"name" : "string"
},
"area_leader" : {
"id" : "string",
"name" : "string"
}
} ],
"page_count" : 10,
"page_size" : 10
}
1.2.8. 同步门店信息
POST /{tenant_id}/merchant/storeservice/updates
1.2.8.1. 说明
同步门店信息
1.2.8.2. 参数
类型 | 名称 | 说明 | 类型 |
---|---|---|---|
Path |
tenant_id |
租户ID |
string |
Query |
operator |
操作人 |
string |
Body |
stores |
门店列表 |
1.2.8.3. 响应
HTTP代码 | 说明 | 类型 |
---|---|---|
200 |
successful operation |
1.2.8.4. HTTP请求示例
请求 path
/string/merchant/storeservice/updates?operator=string
请求 body
{
"stores" : [ {
"id" : "2345456",
"name" : "阳光店",
"state" : "opened",
"type" : "self",
"location" : {
"province" : "福建",
"city" : "厦门",
"district" : "湖里",
"street" : "金山街道226",
"area" : "北区",
"lat" : 123.0,
"lng" : 64.0,
"province_code" : "365",
"city_code" : "01",
"district_code" : "13"
},
"contact" : {
"name" : "李飞",
"phone" : "18676778787"
},
"remark" : "第二个路口左转",
"gid" : "gid",
"distance" : 100.0,
"circles" : [ "string" ],
"region" : {
"id" : "2345456",
"name" : "阳光店",
"mgr_wechat_work_id" : "123456"
},
"tags" : [ {
"name" : "string"
} ],
"business_type" : "early_education",
"business_hours" : "10:00-12:00;14:00-21:00",
"main_image_url" : "string",
"image_urls" : [ "string" ],
"open_date" : "2018-06-01 00:00:00",
"sap_code" : "sapCode",
"source_sys" : "HDPOS4",
"tax_no" : "1245",
"account_no" : "1245",
"account_name" : "1245",
"customs_fields" : [ {
"id" : "area_id",
"name" : "地区代码",
"value" : "ET09"
} ],
"operation_manager" : {
"id" : "string",
"name" : "string"
},
"area_leader" : {
"id" : "string",
"name" : "string"
}
} ]
}
1.2.8.5. HTTP响应示例
响应 200
{
"success" : true,
"code" : "string",
"message" : "string"
}
1.2.9. 获取用户授权门店
GET /{tenant_id}/merchant/storeservice/user/{user_id}/managestores
1.2.9.1. 说明
获取用户授权门店
1.2.9.2. 参数
类型 | 名称 | 说明 | 类型 |
---|---|---|---|
Path |
tenant_id |
租户ID |
string |
Path |
user_id |
用户ID |
string |
1.2.9.3. 响应
HTTP代码 | 说明 | 类型 |
---|---|---|
200 |
successful operation |
1.2.9.4. HTTP请求示例
请求 path
/string/merchant/storeservice/user/string/managestores
1.2.9.5. HTTP响应示例
响应 200
{
"stores" : [ {
"id" : "2345456",
"name" : "阳光店",
"state" : "opened",
"type" : "self",
"location" : {
"province" : "福建",
"city" : "厦门",
"district" : "湖里",
"street" : "金山街道226",
"area" : "北区",
"lat" : 123.0,
"lng" : 64.0,
"province_code" : "365",
"city_code" : "01",
"district_code" : "13"
},
"contact" : {
"name" : "李飞",
"phone" : "18676778787"
},
"remark" : "第二个路口左转",
"gid" : "gid",
"distance" : 100.0,
"circles" : [ "string" ],
"region" : {
"id" : "2345456",
"name" : "阳光店",
"mgr_wechat_work_id" : "123456"
},
"tags" : [ {
"name" : "string"
} ],
"business_type" : "early_education",
"business_hours" : "10:00-12:00;14:00-21:00",
"main_image_url" : "string",
"image_urls" : [ "string" ],
"open_date" : "2018-06-01 00:00:00",
"sap_code" : "sapCode",
"source_sys" : "HDPOS4",
"tax_no" : "1245",
"account_no" : "1245",
"account_name" : "1245",
"customs_fields" : [ {
"id" : "area_id",
"name" : "地区代码",
"value" : "ET09"
} ],
"operation_manager" : {
"id" : "string",
"name" : "string"
},
"area_leader" : {
"id" : "string",
"name" : "string"
}
} ]
}
1.2.10. 同步门店信息
POST /{tenant_id}/merchant/{tenant_id}/merchant/storeservice/syncStores
1.2.10.1. 说明
同步门店信息
1.2.10.2. 参数
类型 | 名称 | 说明 | 类型 |
---|---|---|---|
Path |
tenant_id |
租户ID |
string |
Query |
operator |
操作人 |
string |
Body |
stores |
门店列表 |
1.2.10.3. 响应
HTTP代码 | 说明 | 类型 |
---|---|---|
200 |
successful operation |
1.2.10.4. HTTP请求示例
请求 path
/string/merchant/string/merchant/storeservice/syncStores?operator=string
请求 body
{
"stores" : [ {
"id" : "2345456",
"name" : "阳光店",
"state" : "opened",
"type" : "self",
"location" : {
"province" : "福建",
"city" : "厦门",
"district" : "湖里",
"street" : "金山街道226",
"area" : "北区",
"lat" : 123.0,
"lng" : 64.0,
"province_code" : "365",
"city_code" : "01",
"district_code" : "13"
},
"contact" : {
"name" : "李飞",
"phone" : "18676778787"
},
"remark" : "第二个路口左转",
"gid" : "gid",
"distance" : 100.0,
"circles" : [ "string" ],
"region" : {
"id" : "2345456",
"name" : "阳光店",
"mgr_wechat_work_id" : "123456"
},
"tags" : [ {
"name" : "string"
} ],
"business_type" : "early_education",
"business_hours" : "10:00-12:00;14:00-21:00",
"main_image_url" : "string",
"image_urls" : [ "string" ],
"open_date" : "2018-06-01 00:00:00",
"sap_code" : "sapCode",
"source_sys" : "HDPOS4",
"tax_no" : "1245",
"account_no" : "1245",
"account_name" : "1245",
"customs_fields" : [ {
"id" : "area_id",
"name" : "地区代码",
"value" : "ET09"
} ],
"operation_manager" : {
"id" : "string",
"name" : "string"
},
"area_leader" : {
"id" : "string",
"name" : "string"
}
} ]
}
1.2.10.5. HTTP响应示例
响应 200
{
"success" : true,
"code" : "string",
"message" : "string"
}
2. 定义
2.1. ActionResult
名称 | 说明 | 类型 |
---|---|---|
code |
样例 : |
string |
message |
样例 : |
string |
success |
默认值 : |
boolean |
2.3. CustomField
自定义属性值
名称 | 说明 | 类型 |
---|---|---|
id |
字段ID |
string |
name |
自定名称 |
string |
value |
字段值 |
string |
2.4. IdName
名称 | 说明 | 类型 |
---|---|---|
id |
样例 : |
string |
name |
样例 : |
string |
2.5. Location
位置信息
名称 | 说明 | 类型 |
---|---|---|
area |
地区 |
string |
city |
市 |
string |
city_code |
市代码 |
string |
district |
区 |
string |
district_code |
区代码 |
string |
lat |
纬度 |
number |
lng |
经度 |
number |
province |
省 |
string |
province_code |
省代码 |
string |
street |
详细地址 |
string |
2.6. Store
门店资料对象
名称 | 说明 | 类型 |
---|---|---|
account_name |
开票银行名称 |
string |
account_no |
开票银行账号 |
string |
area_leader |
区域主管 |
|
business_hours |
经营时段 |
string |
business_type |
业态:ip(ip),park(乐园),early_education(早教) |
string |
circles |
所属商圈 |
< string > array |
contact |
联系方式 |
|
customs_fields |
自定义属性值 |
< CustomField > array |
distance |
距离 |
number |
gid |
门店Gid |
string |
id |
门店代码 |
string |
image_urls |
多张图片;分隔,最多5张图片 |
< string > array |
location |
位置信息 |
|
main_image_url |
主图 |
string |
name |
门店名称 |
string |
open_date |
开店时间 |
string (date-time) |
operation_manager |
运营经理 |
|
region |
所属区域 |
|
remark |
备注 |
string |
sap_code |
门店SAP编码 |
string |
source_sys |
来源系统 |
string |
state |
门店状态:opened(正常),stopped(停业),closed(关闭) |
enum (opened, stopped, closed) |
tags |
标签 |
< StoreTag > array |
tax_no |
开票税号 |
string |
type |
门店类型:self(自营连锁),self_join(连锁加盟(自主)),managed_join(连锁加盟(托管)),interal_join(连锁加盟(内部)),single_store(单店),other(其它),direct(直营),join(加盟) |
enum (self, self_join, managed_join, interal_join, single_store, other, direct, join) |
2.7. StoreFilter
门店过滤器
名称 | 说明 | 类型 |
---|---|---|
business_types |
业态 |
< string > array |
circles |
所属商圈 |
< string > array |
id |
门店代码 |
string |
key_like |
查询关键字类似于 |
string |
latitude_end |
纬度结束于 |
number |
latitude_start |
纬度起始于 |
number |
longtitude_end |
经度终止于 |
number |
longtitude_start |
经度起始于 |
number |
modified_end |
修改时间结束于 |
string (date-time) |
modified_start |
修改时间起始于 |
string (date-time) |
states |
门店状态:opened(正常),opened(停业),opened(关闭) |
< enum (opened, stopped, closed) > array |
store_ids |
多个门店代码 |
< string > array |
types |
门店类型:self(自营连锁),self_join(连锁加盟(自主)),managed_join(连锁加盟(托管)),interal_join(连锁加盟(内部)),single_store(单店),other(其它),direct(直营),join(加盟) |
< enum (self, self_join, managed_join, interal_join, single_store, other, direct, join) > array |
2.9. StoreModification
门店修改对象
名称 | 说明 | 类型 |
---|---|---|
account_name |
开票银行名称 |
string |
account_no |
开票银行账号 |
string |
area_leader |
区域主管 |
|
business_hours |
营业时间,形如 08:00-10:00;12:00-14:00 的字符串 |
string |
business_type |
业态:ip(ip),park(乐园),early_education(早教) |
string |
circles |
所属商圈 |
< string > array |
contact |
联系方式 |
|
gid |
内部GID |
string |
location |
位置信息 |
|
name |
门店名称 |
string |
operation_manager |
运营经理 |
|
region |
样例 : StoreRegion |
|
remark |
备注 |
string |
sap_code |
样例 : |
string |
source_sys |
来源系统 |
string |
state |
门店状态:opened(正常),stopped(停业),closed(关闭) |
enum (opened, stopped, closed) |
tags |
样例 : |
< StoreTag > array |
tax_no |
开票税号 |
string |
type |
门店类型:self(自营连锁),self_join(连锁加盟(自主)),managed_join(连锁加盟(托管)),interal_join(连锁加盟(内部)),single_store(单店),other(其它),direct(直营),join(加盟) |
enum (self, self_join, managed_join, interal_join, single_store, other, direct, join) |
2.10. StorePaging
门店查询对象
名称 | 说明 | 类型 |
---|---|---|
page |
页码 |
integer (int32) |
page_count |
页数 |
integer (int32) |
page_size |
分页大小 |
integer (int32) |
stores |
门店列表 |
< Store > array |
total |
总记录数 |
integer (int64) |
2.11. StoreRegion
门店所属区域
名称 | 说明 | 类型 |
---|---|---|
id |
区域代码 |
string |
mgr_wechat_work_id |
区域经理企业微信id |
string |
name |
区域名称 |
string |
2.12. StoreTag
名称 | 说明 | 类型 |
---|---|---|
name |
样例 : |
string |
2.13. Warehouse
仓库
名称 | 说明 | 类型 |
---|---|---|
code |
代码 |
string |
contact |
仓库联系方式 |
|
gid |
仓库Gid |
string |
location |
仓库位置信息 |
|
logistics_center_id |
物流中心代码 |
string |
logistics_center_name |
物流中心名称 |
string |
name |
名称 |
string |
2.14. WarehouseContact
名称 | 说明 | 类型 |
---|---|---|
phone |
样例 : |
string |