goProject/trunk/framework/gameLogMgr/model.go
皮蛋13361098506 1b77f62820 初始化项目
2025-01-06 16:01:02 +08:00

15 lines
285 B
Go

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