replyModel.ts 831 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. export interface ReplyParams {
  2. page: number
  3. limit: number
  4. }
  5. export interface ReplyResult {
  6. count: number
  7. list: Array<ReplyModel>
  8. }
  9. export interface ReplyModel {
  10. // 评论id
  11. reply_id: string
  12. uid: string
  13. // 商户id
  14. mer_id: string
  15. // 订单商品id
  16. order_product_id: string
  17. unique: string
  18. // 商品id
  19. product_id: string
  20. product_type: string
  21. product_score: string
  22. service_score: string
  23. postage_score: string
  24. // 平均值
  25. rate: string
  26. // 评论内容
  27. comment: string
  28. // 图片(用,隔开)
  29. pics: string
  30. create_time: string
  31. merchant_reply_content: string
  32. merchant_reply_time: string
  33. is_del: string
  34. is_reply: string
  35. is_virtual: string
  36. // 评论人昵称
  37. nickname: string
  38. // 头像
  39. avatar: string
  40. }