Merge branch 'refactor-location' into develop
This commit is contained in:
commit
8c82fe548b
|
@ -15,6 +15,7 @@ type (
|
|||
ID string `json:"id"`
|
||||
Name string `json:"name"`
|
||||
Code int `json:"code"`
|
||||
Slug string `json:"slug"`
|
||||
RegionCode string `json:"regionCode"`
|
||||
MainRegionCode string `json:"mainRegionCode"`
|
||||
}
|
||||
|
@ -24,6 +25,7 @@ type (
|
|||
ID string `json:"id"`
|
||||
Name string `json:"name"`
|
||||
Code int `json:"code"`
|
||||
Slug string `json:"slug"`
|
||||
}
|
||||
|
||||
// LocationWard ...
|
||||
|
@ -31,6 +33,7 @@ type (
|
|||
ID string `json:"id"`
|
||||
Name string `json:"name"`
|
||||
Code int `json:"code"`
|
||||
Slug string `json:"slug"`
|
||||
}
|
||||
|
||||
// LocationProvinceResponse ...
|
||||
|
@ -53,7 +56,6 @@ type (
|
|||
ID string `json:"_id"`
|
||||
Name string `json:"name"`
|
||||
SearchString string `json:"searchString"`
|
||||
Slug string `json:"slug"`
|
||||
OldSlug string `json:"oldSlug"`
|
||||
Code int `json:"code"`
|
||||
CountryCode string `json:"countryCode"`
|
||||
|
@ -70,7 +72,6 @@ type (
|
|||
ID string `json:"_id"`
|
||||
Name string `json:"name"`
|
||||
SearchString string `json:"searchString"`
|
||||
Slug string `json:"slug"`
|
||||
OldSlug string `json:"oldSlug"`
|
||||
Code int `json:"code"`
|
||||
ProvinceCode int `json:"provinceCode"`
|
||||
|
@ -85,7 +86,6 @@ type (
|
|||
ID string `json:"_id"`
|
||||
Name string `json:"name"`
|
||||
SearchString string `json:"searchString"`
|
||||
Slug string `json:"slug"`
|
||||
OldSlugs []string `json:"oldSlugs"`
|
||||
Code int `json:"code"`
|
||||
DistrictCode int `json:"districtCode"`
|
||||
|
|
Loading…
Reference in New Issue