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"` } )