q5/xparams.go
aozhiwei 924eed81d1 1
2020-08-27 20:03:26 +08:00

13 lines
164 B
Go

package q5
type XParams struct {
Sender XValue
Param1 XValue
Param2 XValue
Param3 XValue
}
func (this *XParams) SetInt32(val int32) *XParams {
return this
}