| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- export interface ReplyParams {
- page: number
- limit: number
- }
- export interface ReplyResult {
- count: number
- list: Array<ReplyModel>
- }
- export interface ReplyModel {
- // 评论id
- reply_id: string
- uid: string
- // 商户id
- mer_id: string
- // 订单商品id
- order_product_id: string
- unique: string
- // 商品id
- product_id: string
- product_type: string
- product_score: string
- service_score: string
- postage_score: string
- // 平均值
- rate: string
- // 评论内容
- comment: string
- // 图片(用,隔开)
- pics: string
- create_time: string
- merchant_reply_content: string
- merchant_reply_time: string
- is_del: string
- is_reply: string
- is_virtual: string
- // 评论人昵称
- nickname: string
- // 头像
- avatar: string
- }
|