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.
31 lines
1003 B
31 lines
1003 B
4 months ago
|
// =================================================================================
|
||
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
||
|
// =================================================================================
|
||
|
|
||
|
package do
|
||
|
|
||
|
import (
|
||
|
"github.com/gogf/gf/v2/frame/g"
|
||
|
"github.com/gogf/gf/v2/os/gtime"
|
||
|
)
|
||
|
|
||
|
// GameUnitCopy2 is the golang structure of table game_unit_copy2 for DAO operations like Where/Data.
|
||
|
type GameUnitCopy2 struct {
|
||
|
g.Meta `orm:"table:game_unit_copy2, do:true"`
|
||
|
Id interface{} //
|
||
|
Account interface{} //
|
||
|
Channel interface{} //
|
||
|
Uid interface{} //
|
||
|
Server interface{} //
|
||
|
Scale interface{} //
|
||
|
Name interface{} //
|
||
|
LogTime interface{} //
|
||
|
CreateTime *gtime.Time // 账号创建时间
|
||
|
VillagerNum interface{} // 村民数量
|
||
|
Prosperity interface{} // 繁荣值
|
||
|
GoldIngot interface{} // 桃花石
|
||
|
BaseFood interface{} // 基础食物
|
||
|
Day interface{} // 游戏天数
|
||
|
Recharge interface{} // 充值
|
||
|
}
|