蛋蛋星球-客户端
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

42 行
1.2 KiB

  1. package md
  2. type UserFeedbackListReq struct {
  3. Page string `json:"page"`
  4. Limit string `json:"limit"`
  5. }
  6. type UserFeedbackRecordReq struct {
  7. Page string `json:"page"`
  8. Id string `json:"id"`
  9. }
  10. type UserFeedbackListResp struct {
  11. Id string `json:"id"`
  12. Title string `json:"title"`
  13. Type string `json:"type"`
  14. Label string `json:"label"`
  15. Img []string `json:"img"`
  16. Content string `json:"content"`
  17. CreateAt string `json:"create_at"`
  18. State string `json:"state" example:"0未回复 1已回复"`
  19. }
  20. type UserFeedbackRecordResp struct {
  21. Type string `json:"type"`
  22. Nickname string `json:"nickname"`
  23. HeadImg string `json:"head_img"`
  24. CreateAt string `json:"create_at"`
  25. Content string `json:"content"`
  26. }
  27. type UserFeedbackSaveReq struct {
  28. Cid string `json:"cid" example:"问题类型的id"`
  29. Type string `json:"type" example:"问题类型的name"`
  30. Content string `json:"content" example:"问题内容"`
  31. Img []string `json:"img" example:"图片"`
  32. Idea string `json:"idea" example:"建议内容"`
  33. Phone string `json:"phone"`
  34. Title string `json:"title"`
  35. }
  36. type UserFeedbackSayReq struct {
  37. Id string `json:"id" example:"id"`
  38. Content string `json:"content" example:"问题内容"`
  39. }