geetest.go 308 B

1234567891011121314
  1. package model
  2. //ProcessRes 拉起返回值
  3. type ProcessRes struct {
  4. Success int `json:"success"`
  5. CaptchaID string `json:"gt"`
  6. Challenge string `json:"challenge"`
  7. NewCaptcha int `json:"new_captcha"`
  8. }
  9. //ValidateRes 验证返回值
  10. type ValidateRes struct {
  11. Seccode string `json:"seccode"`
  12. }