wangchuxiao 759432794f errcode
2023-02-09 20:36:34 +08:00

15 lines
252 B
Go

package requestparams
type PushForward struct {
NextType int `json:"nextType"`
Scheme string `json:"scheme,omitempty"`
}
func (m *PushForward) SetNextType(c int) {
m.NextType = c
}
func (m *PushForward) SetScheme(t string) {
m.Scheme = t
}