蛋蛋星球-客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

realname_auth_base.go 980 B

3 weeks ago
3 weeks ago
2 weeks ago
3 weeks ago
123456789101112131415161718192021222324252627282930
  1. package md
  2. type RealNameAuthBasicData struct {
  3. AuthState string `json:"auth_state" example:"0未申请 1申请通过 3申请失败"`
  4. IsNeedGetEnergy string `json:"is_need_get_energy" example:"0不需要获取能量 1弹窗提示 前往蛋蛋乐园获取能量"`
  5. TipStr string `json:"tip_str"`
  6. }
  7. type RealNameAuthAddRequest struct {
  8. RealName string `json:"real_name"`
  9. CardNo string `json:"card_no"`
  10. }
  11. type UserCertifyRequest struct {
  12. OrderId string `json:"order_id"` //支付订单
  13. RealName string `json:"real_name" `
  14. IdentityNum string `json:"identity_num" `
  15. CertifyId string `json:"certify_id"`
  16. Uid string `json:"uid"`
  17. }
  18. type UserCertifyParams struct {
  19. RealName string `json:"real_name" `
  20. IdentityNum string `json:"identity_num" `
  21. OrdId string `json:"ord_id"`
  22. CertifyId string `json:"certify_id"`
  23. Uid string `json:"uid"`
  24. }
  25. type RealNameAuthResp struct {
  26. Oid string `json:"oid"`
  27. Url string `json:"url"`
  28. }