21 lines
704 B
Go
21 lines
704 B
Go
// =================================================================================
|
|
// Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-03-02 16:48:23
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
)
|
|
|
|
// AreaDict is the golang structure of table tenant for DAO operations like Where/Data.
|
|
type AreaDict struct {
|
|
g.Meta `orm:"table:area_dict, do:true"`
|
|
Id interface{} //
|
|
CityName interface{} // 城市名称
|
|
ParentId interface{} // 父级id
|
|
ShortName interface{} // 城市缩写名称
|
|
Depth interface{} // 城市层级
|
|
MergerName interface{} // 城市组合名称
|
|
}
|