goProject/.svn/pristine/07/0782015460cfe541898e77c9fb5904023dcd9457.svn-base
2025-01-06 16:21:36 +08:00

15 lines
285 B
Plaintext

package gameLogMgr
// 游戏日志对象
type GameLog struct {
ServerGroupId int32 // 服务器组Id
LogSql string // 日志Sql
}
func newGameLog(serverGroupId int32, logSql string) *GameLog {
return &GameLog{
ServerGroupId: serverGroupId,
LogSql: logSql,
}
}