Files

18 lines
347 B
Go
Raw Normal View History

2021-09-30 12:09:45 +08:00
package config
2021-09-30 16:20:00 +08:00
// Area 区域
2021-09-30 12:09:45 +08:00
type Area struct {
Province uint64 `json:"province"`
City uint64 `json:"city"`
District uint64 `json:"district"`
Address string `json:"address"`
}
2021-09-30 16:20:00 +08:00
type (
2021-10-09 17:32:23 +08:00
// IdentityForCompany 公司附加信息
2021-09-30 16:20:00 +08:00
IdentityForCompany struct {
2021-10-09 17:32:23 +08:00
Industry uint64 `json:"industry"`
Keywords []string `json:"keywords"`
2021-09-30 16:20:00 +08:00
}
)