添加袤博推送 (#284)

Co-authored-by: liuming <liuming@example.com>
This commit is contained in:
liu ming
2022-09-23 17:40:48 +08:00
committed by GitHub
parent 1a61598322
commit e000dc18aa
9 changed files with 191 additions and 0 deletions
@@ -0,0 +1,14 @@
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
}