17 lines
816 B
Go
17 lines
816 B
Go
// =================================================================================
|
|
// Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-03-02 16:48:23
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
// AreaDict is the golang structure for table tenant.
|
|
type AreaDict struct {
|
|
Id int `json:"id" description:""`
|
|
CityName string `json:"cityName" description:"城市名称"`
|
|
ParentId int `json:"parentId" description:"父级id"`
|
|
ShortName string `json:"shortName" description:"城市缩写名称"`
|
|
Depth int `json:"depth" description:"城市层级"`
|
|
MergerName string `json:"mergerName" description:"城市组合名称"`
|
|
Status int `json:"status" description:"状态"`
|
|
}
|