修改数据类型
This commit is contained in:
@@ -82,30 +82,30 @@ type GetOneStore struct {
|
||||
|
||||
// 获取单个门店(返回)
|
||||
type GetOneStoreRespData struct {
|
||||
Address string `json:"address"` // 门店地址
|
||||
BranchName string `json:"branch_name"` // 门店分店名
|
||||
CategoryID int `json:"category_id"` // 门店类目
|
||||
ChainStoreID string `json:"chain_store_id"` // 蜂鸟门店id,创建接口返回的id
|
||||
ChainstoreType int `json:"chainstore_type"` // 门店类型 1-正式门店;2-测试门店
|
||||
ChainstoreTypeDesc string `json:"chainstore_type_desc"` // 门店类型描述
|
||||
ContactPhone string `json:"contact_phone"` // 门店联系方式
|
||||
CreditCode string `json:"credit_code"` // 统一社会信用代码
|
||||
Latitude string `json:"latitude"` // 门店纬度[0,90]
|
||||
Longitude string `json:"longitude"` // 门店经度[0,180]
|
||||
MerchantID int `json:"merchant_id"` // 所属商户id
|
||||
ModifyStatus int `json:"modify_status"` // 0-无修改,10-资料修改审核中,20-审核通过,30-a审核驳回
|
||||
ModifyStatusDesc string `json:"modify_status_desc"` // 门店修改状态描述
|
||||
Name string `json:"name"` // 门店主店名
|
||||
OutShopCode string `json:"out_shop_code"` // 外部门店编码
|
||||
OwnerIDNum string `json:"owner_id_num"` // 门店拥有人身份证号
|
||||
OwnerName string `json:"owner_name"` // 门店拥有人姓名
|
||||
PositionSource int `json:"position_source"` // 经纬度来源 坐标属性(1:腾讯地图, 2:百度地图, 3:高德地图),蜂鸟建议使用高德地图
|
||||
PositionSourceDesc string `json:"position_source_desc"` // 经纬度来源说明
|
||||
SettlementAccountID int `json:"settlement_account_id"` // 门店结算账号id
|
||||
SettlementMode int `json:"settlement_mode"` // 门店结算方式 1:实时结算; 2:账期结算;
|
||||
SettlementModeDesc string `json:"settlement_mode_desc"` // 结算说明?
|
||||
Status int `json:"status"` // 0-上架审核中,20-正常(已上架),30-上架审核失败,40-已冻结,50-已下架
|
||||
StatusDesc string `json:"status_desc"` // 门店认证状态描述
|
||||
Address string `json:"address"` // 门店地址
|
||||
BranchName string `json:"branch_name"` // 门店分店名
|
||||
CategoryID int `json:"category_id"` // 门店类目
|
||||
ChainStoreID int `json:"chain_store_id"` // 蜂鸟门店id,创建接口返回的id
|
||||
ChainstoreType int `json:"chainstore_type"` // 门店类型 1-正式门店;2-测试门店
|
||||
ChainstoreTypeDesc string `json:"chainstore_type_desc"` // 门店类型描述
|
||||
ContactPhone string `json:"contact_phone"` // 门店联系方式
|
||||
CreditCode string `json:"credit_code"` // 统一社会信用代码
|
||||
Latitude float64 `json:"latitude"` // 门店纬度[0,90]
|
||||
Longitude float64 `json:"longitude"` // 门店经度[0,180]
|
||||
MerchantID int `json:"merchant_id"` // 所属商户id
|
||||
ModifyStatus int `json:"modify_status"` // 0-无修改,10-资料修改审核中,20-审核通过,30-a审核驳回
|
||||
ModifyStatusDesc string `json:"modify_status_desc"` // 门店修改状态描述
|
||||
Name string `json:"name"` // 门店主店名
|
||||
OutShopCode string `json:"out_shop_code"` // 外部门店编码
|
||||
OwnerIDNum string `json:"owner_id_num"` // 门店拥有人身份证号
|
||||
OwnerName string `json:"owner_name"` // 门店拥有人姓名
|
||||
PositionSource int `json:"position_source"` // 经纬度来源 坐标属性(1:腾讯地图, 2:百度地图, 3:高德地图),蜂鸟建议使用高德地图
|
||||
PositionSourceDesc string `json:"position_source_desc"` // 经纬度来源说明
|
||||
SettlementAccountID int `json:"settlement_account_id"` // 门店结算账号id
|
||||
SettlementMode int `json:"settlement_mode"` // 门店结算方式 1:实时结算; 2:账期结算;
|
||||
SettlementModeDesc string `json:"settlement_mode_desc"` // 结算说明?
|
||||
Status int `json:"status"` // 0-上架审核中,20-正常(已上架),30-上架审核失败,40-已冻结,50-已下架
|
||||
StatusDesc string `json:"status_desc"` // 门店认证状态描述
|
||||
}
|
||||
|
||||
// 更新蜂鸟门店信息
|
||||
|
||||
Reference in New Issue
Block a user