蛋蛋星球 后台端
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.

md_user_real_name.go 1.1 KiB

2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks ago
1234567891011121314151617181920212223242526272829303132333435
  1. package md
  2. type UserRealNameReq struct {
  3. Uid string `json:"uid"`
  4. Phone string `json:"phone"`
  5. Name string `json:"name"`
  6. IdNo string `json:"id_no"`
  7. Page string `json:"page"`
  8. Limit string `json:"limit"`
  9. State string `json:"state"`
  10. }
  11. type UserRealNameResp struct {
  12. Total int64 `json:"total"`
  13. List []UserRealName `json:"list"`
  14. SelectData []map[string]string `json:"select_data"`
  15. }
  16. type UserRealName struct {
  17. Id string `json:"id"`
  18. Uid string `json:"uid"`
  19. Phone string `json:"phone"`
  20. Name string `json:"name"`
  21. IdNo string `json:"id_no"`
  22. PayState string `json:"pay_state" example:"0未支付 1已支付"`
  23. State string `json:"state" example:"0未申请 1申请通过 3申请失败"`
  24. CreateTime string `json:"create_time"`
  25. }
  26. type UserRealNameSaveReq struct {
  27. Id string `json:"id"`
  28. State string `json:"state"`
  29. }
  30. type UserRealNameBaseResp struct {
  31. UserRealNameMoney string `json:"user_real_name_money" example:"实名认证费用" `
  32. UserRealNameRule string `json:"user_real_name_rule" example:"实名认证说明" `
  33. }