23 lines
460 B
Go
23 lines
460 B
Go
package model
|
||
|
||
var (
|
||
ClientLogDBName = "log"
|
||
ClientLogCollName = "log_clientlog"
|
||
ClientLogMysqlCollName = "log_clientlog_mysql"
|
||
)
|
||
|
||
type ClientLog struct {
|
||
Data string // 客户端数据,json格式
|
||
Platform string // 平台id
|
||
Snid int32 // 玩家id
|
||
Ts int64 // 时间戳
|
||
CreateTs int64 // 注册时间
|
||
}
|
||
|
||
type CustomData struct {
|
||
GuideTp int32 `json:"guide_tp"`
|
||
N int64 `json:"n"`
|
||
}
|
||
|
||
type ClientLogMysql ClientLog
|