- StoreExt.StoreMaps与CourierMaps改为[]map[string]interface{}
This commit is contained in:
@@ -37,14 +37,14 @@ const (
|
|||||||
|
|
||||||
type StoreExt struct {
|
type StoreExt struct {
|
||||||
model.Store
|
model.Store
|
||||||
FloatLng float64 `json:"lng"`
|
FloatLng float64 `json:"lng"`
|
||||||
FloatLat float64 `json:"lat"`
|
FloatLat float64 `json:"lat"`
|
||||||
CityName string `json:"cityName"`
|
CityName string `json:"cityName"`
|
||||||
DistrictName string `json:"districtName"`
|
DistrictName string `json:"districtName"`
|
||||||
StoreMapStr string `json:"-"`
|
StoreMapStr string `json:"-"`
|
||||||
CourierMapStr string `json:"-"`
|
CourierMapStr string `json:"-"`
|
||||||
StoreMaps []interface{} `orm:"-"`
|
StoreMaps []map[string]interface{} `orm:"-"`
|
||||||
CourierMaps []interface{} `orm:"-"`
|
CourierMaps []map[string]interface{} `orm:"-"`
|
||||||
|
|
||||||
OrderCount int `json:"orderCount"`
|
OrderCount int `json:"orderCount"`
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user