Files
2021-09-30 16:20:00 +08:00

19 lines
369 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 {
Name string `json:"name"` // 公司企业名称
Code string `json:"code"` // 企业代码
Area
}
)