q5/xparams.go
aozhiwei d1c788bb06 1
2020-08-27 23:24:51 +08:00

17 lines
220 B
Go

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