30 lines
504 B
Go
30 lines
504 B
Go
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
|
||
}
|