This commit is contained in:
2026-03-18 10:19:42 +08:00
parent 2526ad4414
commit e58dd3529d
267 changed files with 25279 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
// =================================================================================
// 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{} // 城市组合名称
}