回复评论
[TOC]
简要描述
- 用户注册接口
请求URL
http://localhost:8081/comment/reply
请求方式
- POST
参数
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
userid | 是 | Long | 用户id |
commentid | 是 | Long | 评论id |
content | 是 | String | 评论内容 |
请求示例
{
"userid":"1212",
"commentid":"66666",
"content":"评论内容",
}
返回示例
成功返回示例{
"code":0
"massage":"成功",
"data":null;
}
失败返回示例{
"code":601
"massage":"未登录,无法进行该操作",
"data":null;
}
返回参数说明
参数名 | 类型 | 说明 |
---|---|---|
result | Rusult | 返回结果 |
备注
- 回复评论