q5/xparams.go
aozhiwei f58f61120a 1
2020-09-07 16:57:34 +08:00

18 lines
247 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) Init(initFunc func (*XParams)) *XParams {
initFunc(this)
return this
}