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

29 lines
788 B

  1. package md
  2. type RealNameAuthBasicData struct {
  3. AuthState string `json:"auth_state" example:"0未审核 1通过 2拒绝"`
  4. }
  5. type RealNameAuthAddRequest struct {
  6. RealName string `json:"real_name"`
  7. CardNo string `json:"card_no"`
  8. }
  9. type UserCertifyRequest struct {
  10. OrderId string `json:"order_id"` //支付订单
  11. RealName string `json:"real_name" `
  12. IdentityNum string `json:"identity_num" `
  13. CertifyId string `json:"certify_id"`
  14. Uid string `json:"uid"`
  15. }
  16. type UserCertifyParams struct {
  17. RealName string `json:"real_name" `
  18. IdentityNum string `json:"identity_num" `
  19. OrdId string `json:"ord_id"`
  20. CertifyId string `json:"certify_id"`
  21. Uid string `json:"uid"`
  22. }
  23. type RealNameAuthResp struct {
  24. Oid string `json:"oid"`
  25. Url string `json:"url"`
  26. }