Compare commits
No commits in common. "4dd7e3a49f27fc3cdf38daa8fc7167c3e6ddad56" and "0fd838c4e06b62a92df688cd97fb67896f9b4ffe" have entirely different histories.
4dd7e3a49f
...
0fd838c4e0
|
@ -28,17 +28,10 @@ type (
|
||||||
|
|
||||||
// LocationWard ...
|
// LocationWard ...
|
||||||
LocationWard struct {
|
LocationWard struct {
|
||||||
ID string `json:"id"`
|
ID string `json:"id"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Code int `json:"code"`
|
Code int `json:"code"`
|
||||||
Slug string `json:"slug"`
|
Slug string `json:"slug"`
|
||||||
Location *GEOLocation `json:"location"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// GEOLocation ...
|
|
||||||
GEOLocation struct {
|
|
||||||
Type string `bson:"type" json:"type"`
|
|
||||||
Coordinates []float64 `bson:"coordinates" json:"coordinates"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// LocationProvinceResponse ...
|
// LocationProvinceResponse ...
|
||||||
|
@ -83,13 +76,12 @@ type (
|
||||||
|
|
||||||
// LocationWardDetailResponse ...
|
// LocationWardDetailResponse ...
|
||||||
LocationWardDetailResponse struct {
|
LocationWardDetailResponse struct {
|
||||||
ID string `json:"_id"`
|
ID string `json:"_id"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
OldSlugs []string `json:"oldSlugs"`
|
OldSlugs []string `json:"oldSlugs"`
|
||||||
Slug string `json:"slug"`
|
Slug string `json:"slug"`
|
||||||
Code int `json:"code"`
|
Code int `json:"code"`
|
||||||
DistrictCode int `json:"districtCode"`
|
DistrictCode int `json:"districtCode"`
|
||||||
ProvinceCode int `json:"provinceCode"`
|
ProvinceCode int `json:"provinceCode"`
|
||||||
Location *GEOLocation `json:"location"`
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue