文档
测试

我的评论

POST
/productComment/v1/myComments

请求头

参数名
类型
描述
必填
Content-type
string
application/json
必填

请求参数

参数名
类型
描述
必填
userInfoId
int
用户id
必填
status
string
我的评价/回答
必填

响应参数

参数名
类型
描述
必填
commentId
int
评论id
必填
productId
int
商品id
必填
commentContent
string
评论内容
必填
commentDate
date
评论日期
必填
storeReply
string
掌柜回复
必填
productCommentImages
list
评论图片
必填
productName
string
商品名
必填
price
double
价格
必填
coverImage
string
封面图片
必填

请求示例

```language { "userInfoId":39, "status":"我的评价" } ```

说明 / 示例

```language { "code": 1000, "msg": "操作成功", "data": [ { "productComment": { "commentId": 5, "userInfoId": 39, "productId": 35781, "commentContent": "评论测试额鹅鹅鹅", "commentDate": "2021-11-26 11:49:39", "storeReply": null, "parentId": 0, "productCommentImages": [] }, "productName": "测试商品15", "price": 15.55, "coverImage": "https://norben-storage.oss-cn-hangzhou.aliyuncs.com/tests/用户.jpg" }, { "productComment": { "commentId": 3, "userInfoId": 39, "productId": 35779, "commentContent": "评论测试惆怅长岑长", "commentDate": "2021-11-24 11:48:15", "storeReply": "回复啛啛喳喳", "parentId": 0, "productCommentImages": [] }, "productName": "测试商品13", "price": 13.55, "coverImage": "https://norben-storage.oss-cn-hangzhou.aliyuncs.com/tests/用户.jpg" } ] } ```