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.
29 lines
1.3 KiB
29 lines
1.3 KiB
4 months ago
|
// =================================================================================
|
||
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
||
|
// =================================================================================
|
||
|
|
||
|
package entity
|
||
|
|
||
|
import (
|
||
|
"github.com/gogf/gf/v2/os/gtime"
|
||
|
)
|
||
|
|
||
|
// GameUnitCopy2 is the golang structure for table game_unit_copy2.
|
||
|
type GameUnitCopy2 struct {
|
||
|
Id int64 `json:"id" description:""`
|
||
|
Account string `json:"account" description:""`
|
||
|
Channel string `json:"channel" description:""`
|
||
|
Uid int64 `json:"uid" description:""`
|
||
|
Server int `json:"server" description:""`
|
||
|
Scale int `json:"scale" description:""`
|
||
|
Name string `json:"name" description:""`
|
||
|
LogTime int64 `json:"logTime" description:""`
|
||
|
CreateTime *gtime.Time `json:"createTime" description:"账号创建时间"`
|
||
|
VillagerNum int `json:"villagerNum" description:"村民数量"`
|
||
|
Prosperity int `json:"prosperity" description:"繁荣值"`
|
||
|
GoldIngot int `json:"goldIngot" description:"桃花石"`
|
||
|
BaseFood int `json:"baseFood" description:"基础食物"`
|
||
|
Day int `json:"day" description:"游戏天数"`
|
||
|
Recharge int64 `json:"recharge" description:"充值"`
|
||
|
}
|