评论话题
POST
/student/comment/topic/{id}评论话题
请求参数
Path 参数
id
string
必需
Body 参数application/json
id
integer
评论ID
topicId
integer
话题ID
userId
integer
用户ID
content
string
评论内容
parentId
integer
可选
hasLiked
boolean
可选
createdAt
string
可选
updatedAt
string
可选
user
object (StudentDTO)
可选
id
integer
可选
studentid
integer
可选
username
string
可选
name
string
可选
avatar
string
可选
email
string
可选
phone
string
可选
sex
string
可选
idNumber
string
可选
replies
array[object (CommentDTO) {10}]
可选
id
integer
评论ID
topicId
integer
话题ID
userId
integer
用户ID
content
string
评论内容
parentId
integer
可选
hasLiked
boolean
可选
createdAt
string
可选
updatedAt
string
可选
user
object (StudentDTO)
可选
replies
array[object (CommentDTO) {10}]
可选
示例
{
"id": 0,
"topicId": 0,
"userId": 0,
"content": "string",
"parentId": 0,
"hasLiked": true,
"createdAt": "string",
"updatedAt": "string",
"user": {
"id": 0,
"studentid": 0,
"username": "string",
"name": "string",
"avatar": "string",
"email": "string",
"phone": "string",
"sex": "string",
"idNumber": "string"
},
"replies": [
{}
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
可选
编码:1成功,0和其它数字为失败
msg
string
错误信息
data
null
数据
示例
{
"code": 0,
"msg": "",
"data": null
}
最后修改时间: 1 个月前