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

34 lines
973 B

  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. }
  25. type UserRealNameSaveReq struct {
  26. Id string `json:"id"`
  27. State string `json:"state"`
  28. }
  29. type UserRealNameBaseResp struct {
  30. UserRealNameMoney string `json:"user_real_name_money" example:"实名认证费用" `
  31. }