蛋蛋星球-客户端
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.
 
 
 
 
 

30 lines
939 B

  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. }
  6. type RealNameAuthAddRequest struct {
  7. RealName string `json:"real_name"`
  8. CardNo string `json:"card_no"`
  9. }
  10. type UserCertifyRequest struct {
  11. OrderId string `json:"order_id"` //支付订单
  12. RealName string `json:"real_name" `
  13. IdentityNum string `json:"identity_num" `
  14. CertifyId string `json:"certify_id"`
  15. Uid string `json:"uid"`
  16. }
  17. type UserCertifyParams struct {
  18. RealName string `json:"real_name" `
  19. IdentityNum string `json:"identity_num" `
  20. OrdId string `json:"ord_id"`
  21. CertifyId string `json:"certify_id"`
  22. Uid string `json:"uid"`
  23. }
  24. type RealNameAuthResp struct {
  25. Oid string `json:"oid"`
  26. Url string `json:"url"`
  27. }