Commit 4b6a38da by 段启岩

评论回复添加注解

parent ac6fcb48
......@@ -32,6 +32,7 @@ public class QuestionReply implements Serializable {
@ApiModelProperty(value = "用户ID")
private String userId;
@ApiModelProperty(value = "问题ID")
private String questionId;
@ApiModelProperty(value = "回复内容")
......
......@@ -32,14 +32,19 @@ public class QuestionReplyComment implements Serializable {
@ApiModelProperty(value = "用户ID")
private String userId;
@ApiModelProperty(value = "回复ID")
private String replyId;
@ApiModelProperty(value = "父评论ID")
private String parentId;
private String content;
@ApiModelProperty(value = "评论内容")
private String comment;
@ApiModelProperty(value = "评论深度")
private Integer depth;
@ApiModelProperty(value = "评论路径")
private String thread;
private LocalDateTime createTime;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment