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.
17 lines
880 B
17 lines
880 B
4 months ago
|
// =================================================================================
|
||
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
||
|
// =================================================================================
|
||
|
|
||
|
package entity
|
||
|
|
||
|
// GameServerJsonGeneral is the golang structure for table game_server_json_general.
|
||
|
type GameServerJsonGeneral struct {
|
||
|
Id int `json:"id" description:""`
|
||
|
SdkAddress string `json:"sdkAddress" description:""`
|
||
|
UniqueAddress string `json:"uniqueAddress" description:""`
|
||
|
IdentityCheckAddress string `json:"identityCheckAddress" description:""`
|
||
|
RechargeWhiteListIps string `json:"rechargeWhiteListIps" description:""`
|
||
|
GmWhiteListUrl string `json:"gmWhiteListUrl" description:""`
|
||
|
BackstageRechargeUrl string `json:"backstageRechargeUrl" description:""`
|
||
|
}
|