From 3bf2a957000542a15a730859d6f7038a67f93e47 Mon Sep 17 00:00:00 2001 From: gazebo Date: Thu, 25 Jul 2019 13:54:38 +0800 Subject: [PATCH] =?UTF-8?q?-=20StoreExt.StoreMaps=E4=B8=8ECourierMaps?= =?UTF-8?q?=E6=94=B9=E4=B8=BA[]map[string]interface{}?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- business/jxstore/cms/store.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/business/jxstore/cms/store.go b/business/jxstore/cms/store.go index 7fa9daa32..8bcee1359 100644 --- a/business/jxstore/cms/store.go +++ b/business/jxstore/cms/store.go @@ -37,14 +37,14 @@ const ( type StoreExt struct { model.Store - FloatLng float64 `json:"lng"` - FloatLat float64 `json:"lat"` - CityName string `json:"cityName"` - DistrictName string `json:"districtName"` - StoreMapStr string `json:"-"` - CourierMapStr string `json:"-"` - StoreMaps []interface{} `orm:"-"` - CourierMaps []interface{} `orm:"-"` + FloatLng float64 `json:"lng"` + FloatLat float64 `json:"lat"` + CityName string `json:"cityName"` + DistrictName string `json:"districtName"` + StoreMapStr string `json:"-"` + CourierMapStr string `json:"-"` + StoreMaps []map[string]interface{} `orm:"-"` + CourierMaps []map[string]interface{} `orm:"-"` OrderCount int `json:"orderCount"` }