demo.go 420 Bytes
package models

// ReqDemo 请求
type ReqDemo struct {
	BaseLoginInfo
	BaseSign
}

// RspDemo 返回
type RspDemo struct {
	Data any `form:"data" json:"data"`
}

// ReqDump 请求
type ReqDump struct {
	GameID string   `form:"gameid" json:"gameid"`
	Mode   string   `form:"mode" json:"mode"`
	Args   []string `form:"args" json:"args"`
}

// RspDump 返回
type RspDump struct {
	Text string `form:"text" json:"text"`
}