2021-12-15 14:31:14 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
// DataAreaDistributionInfo 数据区域分期
|
|
|
|
type DataAreaDistributionInfo struct {
|
|
|
|
Province string `json:"province"`
|
|
|
|
City string `json:"city"`
|
2022-01-06 10:43:27 +08:00
|
|
|
District string `json:"district"`
|
2021-12-15 14:31:14 +08:00
|
|
|
Industry string `json:"industry"`
|
|
|
|
}
|