文档
测试

查询转发最新评论

POST
123.56.190.192:9001/comments/findTransPondParent

请求头

参数名
类型
描述
必填
token
必填

请求参数

参数名
类型
描述
必填
transPondId
String
任务id
必填
parentId
String
父级评论id
必填
userId
String
用户id
必填
pageStart
int
页码
必填
pageSize
int
每页显示条数
必填

响应参数

参数名
类型
描述
必填
ResultInfo
必填
flag
boolean
正常为true,发生异常返回false
必填
code
int
200成功 5001异常
必填
TransPondAndCount
Object
返回数据对象
必填
transPondReviewList
List<TransPondReview>
评论内容集合
必填
count
int
剩余评论条数
必填
message
String
响应信息描述
必填

说明 / 示例

@Id /** * 评论主键Id */ private String _id; /** *任务Id */ private String transPondId; /** * 评论人id */ private String criticId; /** * 评论内容 */ private String content; /** * 上级评轮id */ private String parentId; /** * 评论喜欢点赞数 */ private int likeNum; /** * 评论时间 */ private long addTime; /** * 评论中@的集合 */ private String userInforList; /** * 头像地址 */ private String headPortraitUrl; /** * 用户名 */ private String userName; /** * 是否点过赞 * like 点赞标识 0表示没点赞,1表示已经点过赞 */ private int like; /** * 子级评论 */ private TransPondAndCount transPondAndCount;