This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 // 时间戳
}
type ClientLogMysql ClientLog