// ================================================================================= // 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" ) // SearchKeyword is the golang structure of table cms_search_keyword for DAO operations like Where/Data. type SearchKeyword struct { g.Meta `orm:"table:cms_search_keyword, do:true"` Id interface{} // 主键 CreatedAt *gtime.Time // 创建时间 UpdatedAt *gtime.Time // 更新时间 Keyword interface{} // 搜索关键字 Total interface{} // 搜索次数 }