2022-02-25 17:11:17 +08:00
|
|
|
// =================================================================================
|
|
|
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
|
|
|
// =================================================================================
|
|
|
|
|
2022-11-24 23:37:34 +08:00
|
|
|
package do
|
2022-02-25 17:11:17 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
2022-11-24 23:37:34 +08:00
|
|
|
"github.com/gogf/gf/v2/os/gtime"
|
2022-02-25 17:11:17 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// SysProvinces is the golang structure of table hg_sys_provinces for DAO operations like Where/Data.
|
|
|
|
type SysProvinces struct {
|
2023-01-25 11:49:21 +08:00
|
|
|
g.Meta `orm:"table:hg_sys_provinces, do:true"`
|
|
|
|
Id interface{} // 省市区ID
|
|
|
|
Title interface{} // 栏目名称
|
|
|
|
Pinyin interface{} // 拼音
|
|
|
|
Lng interface{} // 经度
|
|
|
|
Lat interface{} // 纬度
|
|
|
|
Pid interface{} // 父栏目
|
|
|
|
Level interface{} // 关系树等级
|
|
|
|
Tree interface{} // 关系
|
|
|
|
Sort interface{} // 排序
|
|
|
|
Status interface{} // 状态
|
|
|
|
CreatedAt *gtime.Time // 创建时间
|
|
|
|
UpdatedAt *gtime.Time // 更新时间
|
2022-02-25 17:11:17 +08:00
|
|
|
}
|