github.com/bububa/oceanengine/marketing-api@v0.0.0-20210315120513-0b953137f7a6/model/geolocation.go (about)

     1  package model
     2  
     3  type Geolocation struct {
     4  	Radius       int64   `json:"radius,omitempty"`        // 半径
     5  	Name         string  `json:"name,omitempty"`          // 地点名称
     6  	Long         float64 `json:"long,omitempty"`          // 经度
     7  	Lat          float64 `json:"lat,omitempty"`           // 纬度
     8  	City         string  `json:"city,omitempty"`          // 城市名
     9  	StreetNumber string  `json:"street_number,omitempty"` // 街道号
    10  	Street       string  `json:"street,omitempty"`        // 街道名
    11  	District     string  `json:"district,omitempty"`      // 区域名
    12  	Province     string  `json:"province,omitempty"`      // 省份名
    13  }