// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package do import ( "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/os/gtime" ) // SiteDomain is the golang structure of table cms_site_domain for DAO operations like Where/Data. type SiteDomain struct { g.Meta `orm:"table:cms_site_domain, do:true"` Id interface{} // 主键 CreatedAt *gtime.Time // 创建时间 UpdatedAt *gtime.Time // 更新时间 Sort interface{} // 排序 Name interface{} // 网站名称 Domain interface{} // 域名 Extend interface{} // 扩展属性 GroupId interface{} // 分组id Remark interface{} // 备注 Status interface{} // 启用状态 }