// ================================================================================= // Code generated by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package do import ( "github.com/gogf/gf/v2/frame/g" ) // GameNotice is the golang structure of table game_notice for DAO operations like Where/Data. type GameNotice struct { g.Meta `orm:"table:game_notice, do:true"` Id interface{} // 索引ID NoticeType interface{} // 公告类型:1表示维护公告,2表示登录公告 Channel interface{} // 渠道号:第三方的登录渠道 Content interface{} // Status interface{} // 1.正常,2.白名单,3.维护 }