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
548 B
14 lines
548 B
2 months ago
|
// =================================================================================
|
||
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
||
|
// =================================================================================
|
||
|
|
||
|
package entity
|
||
|
|
||
|
// GameRechargeSign is the golang structure for table game_recharge_sign.
|
||
|
type GameRechargeSign struct {
|
||
|
Id int64 `json:"id" description:""`
|
||
|
Unitid int64 `json:"unitid" description:"账号Id"`
|
||
|
Server int `json:"server" description:"区服"`
|
||
|
Config int `json:"config" description:"配置Id"`
|
||
|
}
|