2019-04-22 02:59:20 +00:00

15 lines
308 B
Go

package model
//ProcessRes 拉起返回值
type ProcessRes struct {
Success int `json:"success"`
CaptchaID string `json:"gt"`
Challenge string `json:"challenge"`
NewCaptcha int `json:"new_captcha"`
}
//ValidateRes 验证返回值
type ValidateRes struct {
Seccode string `json:"seccode"`
}