feat:完善信息

This commit is contained in:
henry
2021-09-30 16:20:00 +08:00
parent 161df42060
commit bd788b8b7e
7 changed files with 118 additions and 37 deletions

View File

@ -1,8 +1,18 @@
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
}
)