Files

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