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"` }