You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
977 B

2 years ago
// =================================================================================
7 months ago
// Code generated by GoFrame CLI tool. DO NOT EDIT.
2 years ago
// =================================================================================
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"`
2 months ago
Id interface{} // 维护公告1.正常,2.白名单,3.维护
NoticeType interface{} // 公告类型:1表示弹窗公告,2表示登录公告,3表示维护公告, 4客服界面, 5预览, 6新服公告,
2 years ago
Channel interface{} // 渠道号:第三方的登录渠道
Content interface{} //
2 months ago
Status interface{} // 维护公告:1.正常,2.白名单,3.维护
8 months ago
CDate interface{} // 公告创建时间
7 months ago
ServerId interface{} //
2 months ago
IsShow interface{} // 公告类型6:0-不显示, 1-显示
2 years ago
}