Files

9 lines
172 B
Go
Raw Normal View History

2021-09-30 12:09:45 +08:00
package config
type Area struct {
Province uint64 `json:"province"`
City uint64 `json:"city"`
District uint64 `json:"district"`
Address string `json:"address"`
}