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
985 B
29 lines
985 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"
|
||
|
)
|
||
|
|
||
|
// LoginLogoutInfo is the golang structure of table login_logout_info for DAO operations like Where/Data.
|
||
|
type LoginLogoutInfo struct {
|
||
|
g.Meta `orm:"table:login_logout_info, do:true"`
|
||
|
Id interface{} //
|
||
|
Uid interface{} //
|
||
|
State interface{} // 1: 登录,2: 登出
|
||
|
CDate *gtime.Time //
|
||
|
GameTime interface{} // 游戏时间
|
||
|
Scale interface{} // 规模
|
||
|
VillagerNum interface{} // 村民数量
|
||
|
Prosperity interface{} // 繁荣值
|
||
|
Copper interface{} // 铜币
|
||
|
GoldIngot interface{} // 桃花石
|
||
|
BaseFood interface{} // 基础食物
|
||
|
Day interface{} // 游戏天数
|
||
|
Server interface{} // 区服
|
||
|
}
|