文档
测试

课程评论列表

GET
/app/comment/list

请求参数

参数名
类型
描述
必填
icourse_id
int
课程id
必填

响应参数

参数名
类型
描述
必填
code
int
0成功 其他失败
必填
msg
String
响应信息
必填
obj
array
评论列表
必填
id
int
必填
memberId
int
用户id
必填
courseId
int
课程id
必填
courseVideoId
int
视频ID
必填
commentNumber
int
评论分数
必填
commentContent
String
评论内容
必填
type
int
分类:0直播 1课程
必填
createdBy
String
创建人
必填
createdTime
String
创建时间
必填
updatedBy
String
修改人
必填
updatedTime
String
修改时间
必填

说明 / 示例

## `返回示例` ```java { "code": 0, "msg": "请求成功", "obj": [ { "id": 49, "memberId": 1169, "courseId": 118, "courseVideoId": 0, "commentNumber": 0, "commentContent": "能退款吗", "type": "1", "createdBy": "手机3011", "createdTime": "2021-07-06 22:35:09", "updatedBy": null, "updatedTime": null }, { "id": 53, "memberId": 1506, "courseId": 118, "courseVideoId": 0, "commentNumber": 0, "commentContent": "", "type": "1", "createdBy": "手机0334", "createdTime": "2021-07-16 09:20:11", "updatedBy": null, "updatedTime": null }, { "id": 54, "memberId": 1506, "courseId": 118, "courseVideoId": 0, "commentNumber": 0, "commentContent": "", "type": "1", "createdBy": "手机0334", "createdTime": "2021-07-16 09:20:11", "updatedBy": null, "updatedTime": null }, { "id": 55, "memberId": 1554, "courseId": 118, "courseVideoId": 0, "commentNumber": 0, "commentContent": "不知道能不能退款,害怕不让退\n", "type": "1", "createdBy": "手机6379", "createdTime": "2021-07-16 09:20:11", "updatedBy": null, "updatedTime": null } ] } ```