Commit 561b5939 by 段启岩

数据库更新

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