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

32 lines
1.0 KiB

  1. package md
  2. type UserInfoResp struct {
  3. Id string `json:"id"`
  4. Phone string `json:"phone"`
  5. Nickname string `json:"nickname"`
  6. InviteCode string `json:"invite_code"`
  7. HeadImg string `json:"head_img"`
  8. IsBindExtend string `json:"is_bind_extend" example:"是否绑定了上级 0否 1是"`
  9. }
  10. type InviteCodeUserInfoReq struct {
  11. InviteCode string `json:"invite_code"`
  12. }
  13. type WechatAccountUserInfoReq struct {
  14. WechatAccount string `json:"wechat_account" example:"微信号 不是修改不用传"`
  15. HeadImg string `json:"head_img" example:"头像 不是修改不用传"`
  16. Nickname string `json:"nickname" example:"昵称 不是修改不用传"`
  17. }
  18. type InviteCodeUserInfoResp struct {
  19. Nickname string `json:"nickname"`
  20. HeadImg string `json:"head_img"`
  21. }
  22. type UserDeleteInfo struct {
  23. Url string `json:"url" example:"蛋蛋星球注销须知 链接"`
  24. Info []UserDeleteInfoList `json:"info"`
  25. }
  26. type UserDeleteInfoList struct {
  27. Title string `json:"title"`
  28. Content string `json:"content"`
  29. }