realname.go 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. package model
  2. // RealnameBool is.
  3. type RealnameBool uint8
  4. // RealnameBool enum
  5. const (
  6. RealnameFalse RealnameBool = iota
  7. RealnameTrue
  8. )
  9. // RealnameCountry .
  10. type RealnameCountry struct {
  11. ID int `json:"id"`
  12. CName string `json:"cname"`
  13. }
  14. // RealnameCardType .
  15. type RealnameCardType struct {
  16. ID int `json:"id"`
  17. Name string `json:"name"`
  18. }
  19. // RealnameChannel .
  20. type RealnameChannel struct {
  21. Name string
  22. Flag RealnameBool
  23. }
  24. // ParamRealnameAlipayApply .
  25. type ParamRealnameAlipayApply struct {
  26. Realname string `form:"real_name"`
  27. CardNum string `form:"card_num"`
  28. Capture int `form:"capture"`
  29. ImgToken string `form:"img_token"`
  30. }
  31. // RealnameAlipayApply .
  32. type RealnameAlipayApply struct {
  33. URL string `json:"url"`
  34. // Bizno string `json:"biz_no"`
  35. }
  36. // RealnameAlipayConfirm .
  37. type RealnameAlipayConfirm struct {
  38. Passed RealnameBool `json:"passed"`
  39. Reason string `json:"reason"`
  40. }
  41. // ParamRealnameCaptchaGTCheck .
  42. type ParamRealnameCaptchaGTCheck struct {
  43. Remote RealnameBool `form:"remote"`
  44. Challenge string `form:"challenge"`
  45. Validate string `form:"validate"`
  46. Seccode string `form:"seccode"`
  47. }
  48. // ParamRealnameCaptchaGTRefresh .
  49. type ParamRealnameCaptchaGTRefresh struct {
  50. Hash string `form:"hash"`
  51. }
  52. // RealnameCaptchaGTRegister .
  53. type RealnameCaptchaGTRegister struct {
  54. Remote RealnameBool `json:"remote"`
  55. ID string `json:"gt_id"`
  56. Challenge string `json:"gt_challenge"`
  57. }
  58. // RealnameCaptchaGTValidate .
  59. type RealnameCaptchaGTValidate struct {
  60. State RealnameBool `json:"state"`
  61. }