Commit 561b5939 by 段启岩

数据库更新

parent 002b1372
......@@ -29,6 +29,9 @@ public class Blog implements Serializable {
@TableId(value = "blog_id", type = IdType.ASSIGN_UUID)
private String blogId;
@ApiModelProperty(value = "用户ID")
private String userId;
@ApiModelProperty(value = "所属类别ID")
private Integer categoryId;
......
......@@ -29,6 +29,9 @@ public class Project implements Serializable {
@TableId(value = "project_id", type = IdType.AUTO)
private Integer projectId;
@ApiModelProperty(value = "用户ID")
private String userId;
@ApiModelProperty(value = "项目名称")
private String projectName;
......
......@@ -29,6 +29,9 @@ public class Question implements Serializable {
@TableId(value = "question_id", type = IdType.ASSIGN_UUID)
private String questionId;
@ApiModelProperty(value = "用户ID")
private String userId;
@ApiModelProperty(value = "问题类别ID")
private Integer categoryId;
......
......@@ -29,6 +29,9 @@ public class QuestionReply implements Serializable {
@TableId(value = "reply_id", type = IdType.ASSIGN_UUID)
private String replyId;
@ApiModelProperty(value = "用户ID")
private String userId;
private String questionId;
@ApiModelProperty(value = "回复内容")
......
......@@ -29,6 +29,9 @@ public class QuestionReplyComment implements Serializable {
@TableId(value = "comment_id", type = IdType.ASSIGN_UUID)
private String commentId;
@ApiModelProperty(value = "用户ID")
private String userId;
private String replyId;
private String parentId;
......
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