goProject/trunk/game/common/model/serverRequestObject.go
2025-01-15 17:36:12 +08:00

30 lines
504 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

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
// 请求对象
type ServerRequestObject struct {
// 请求的唯一标识是需要通过截取请求数据前4位得到并进行手动赋值的暂时未使用
RequestId int64
// 请求的模块名称
ModuleName string
// 请求的方法名称
MethodName string
// 请求的参数数组
Parameters []interface{}
// 客户端发送请求的时间
SendTime int64
ReachTime int64
InQueueTime int64
HandleStartTime int64
HandleEndTime int64
ReturnTime int64
}