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.
15 lines
730 B
15 lines
730 B
2 years ago
|
// =================================================================================
|
||
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
||
|
// =================================================================================
|
||
|
|
||
|
package entity
|
||
|
|
||
|
// GameNotice is the golang structure for table game_notice.
|
||
|
type GameNotice struct {
|
||
|
Id int `json:"id" description:"索引ID"`
|
||
|
NoticeType uint `json:"noticeType" description:"公告类型:1表示维护公告,2表示登录公告"`
|
||
|
Channel string `json:"channel" description:"渠道号:第三方的登录渠道"`
|
||
|
Content string `json:"content" description:""`
|
||
|
Status int `json:"status" description:"1.正常,2.白名单,3.维护"`
|
||
|
}
|