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

40 lines
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. Label string `json:"label"`
  14. Img []string `json:"img"`
  15. Content string `json:"content"`
  16. CreateAt string `json:"create_at"`
  17. State string `json:"state" example:"0未回复 1已回复"`
  18. }
  19. type UserFeedbackRecordResp struct {
  20. Type string `json:"type"`
  21. Nickname string `json:"nickname"`
  22. HeadImg string `json:"head_img"`
  23. CreateAt string `json:"create_at"`
  24. Content string `json:"content"`
  25. }
  26. type UserFeedbackSaveReq struct {
  27. Cid string `json:"cid" example:"问题类型的id"`
  28. Type string `json:"type" example:"问题类型的name"`
  29. Content string `json:"content" example:"问题内容"`
  30. Img []string `json:"img" example:"图片"`
  31. Idea string `json:"idea" example:"建议内容"`
  32. Phone string `json:"phone"`
  33. }
  34. type UserFeedbackSayReq struct {
  35. Id string `json:"id" example:"id"`
  36. Content string `json:"content" example:"问题内容"`
  37. }