17 lines
220 B
Go
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
|
|
}
|