// ================================================================================= // 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" ) // GameNoticeLog is the golang structure of table game_notice_log for DAO operations like Where/Data. type GameNoticeLog struct { g.Meta `orm:"table:game_notice_log, do:true"` Id interface{} // 索引ID NoticeId interface{} // notice表id NoticeType interface{} // 公告类型:1表示弹窗公告,2表示登录公告,3表示维护公告 Channel interface{} // 渠道号:第三方的登录渠道 Content interface{} // Status interface{} // 1.正常,2.白名单,3.维护 SendTime interface{} // 延时发送 CDate *gtime.Time // 公告创建时间 ServerId interface{} // Uids interface{} // PopType interface{} // 1.强制退出,2.普通弹窗 }