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.
14 lines
686 B
14 lines
686 B
// ================================================================================= |
|
// Code generated by GoFrame CLI tool. DO NOT EDIT. |
|
// ================================================================================= |
|
|
|
package entity |
|
|
|
// GameNoticeModel is the golang structure for table game_notice_model. |
|
type GameNoticeModel struct { |
|
Id int64 `json:"id" description:""` |
|
Title string `json:"title" description:""` |
|
Content string `json:"content" description:""` |
|
NoticeType int `json:"noticeType" description:"1-弹窗公告,2-登录公告,3-维护公告;"` |
|
ModelType int `json:"modelType" description:"1-公告头,2-维护补偿"` |
|
}
|
|
|