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.
19 lines
740 B
19 lines
740 B
// ================================================================================= |
|
// Code generated by GoFrame CLI tool. DO NOT EDIT. |
|
// ================================================================================= |
|
|
|
package entity |
|
|
|
import ( |
|
"github.com/gogf/gf/v2/os/gtime" |
|
) |
|
|
|
// GameServerJson is the golang structure for table game_server_json. |
|
type GameServerJson struct { |
|
Id int `json:"id" description:""` |
|
GameDbUrl string `json:"gameDbUrl" description:""` |
|
GameDbName string `json:"gameDbName" description:""` |
|
Platform int `json:"platform" description:""` |
|
InnerIp string `json:"innerIp" description:""` |
|
CreateTime *gtime.Time `json:"createTime" description:""` |
|
}
|
|
|