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.
|
|
|
// =================================================================================
|
|
|
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
|
|
|
// =================================================================================
|
|
|
|
|
|
|
|
package entity
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
// GameOnline is the golang structure for table game_online.
|
|
|
|
type GameOnline struct {
|
|
|
|
Id int64 `json:"id" description:""`
|
|
|
|
Channel string `json:"channel" description:"渠道"`
|
|
|
|
Server int `json:"server" description:"区服"`
|
|
|
|
Num int `json:"num" description:"在线数量"`
|
|
|
|
Date *gtime.Time `json:"date" description:""`
|
|
|
|
}
|