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.
13 lines
484 B
13 lines
484 B
|
4 weeks ago
|
// =================================================================================
|
||
|
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
||
|
|
// =================================================================================
|
||
|
|
|
||
|
|
package entity
|
||
|
|
|
||
|
|
// GameOnlineCount is the golang structure for table game_online_count.
|
||
|
|
type GameOnlineCount struct {
|
||
|
|
Id int `json:"id" description:""`
|
||
|
|
Online int `json:"online" description:""`
|
||
|
|
DailyTop int `json:"dailyTop" description:""`
|
||
|
|
}
|