18 lines
347 B
Go
18 lines
347 B
Go
package config
|
|
|
|
// Area 区域
|
|
type Area struct {
|
|
Province uint64 `json:"province"`
|
|
City uint64 `json:"city"`
|
|
District uint64 `json:"district"`
|
|
Address string `json:"address"`
|
|
}
|
|
|
|
type (
|
|
// IdentityForCompany 公司附加信息
|
|
IdentityForCompany struct {
|
|
Industry uint64 `json:"industry"`
|
|
Keywords []string `json:"keywords"`
|
|
}
|
|
)
|