博客变为论坛,修改编辑器为正常编辑器

This commit is contained in:
limqhz
2022-05-05 01:11:09 +08:00
parent f701baaf04
commit 69941133b8
28 changed files with 457 additions and 187 deletions

View File

@@ -32,13 +32,13 @@ public class Blog implements Serializable {
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
@ApiModelProperty(value = "博客id")
@ApiModelProperty(value = "论坛id")
private String bid;
@ApiModelProperty(value = "博客标题")
@ApiModelProperty(value = "论坛标题")
private String title;
@ApiModelProperty(value = "博客内容")
@ApiModelProperty(value = "论坛内容")
private String content;
@ApiModelProperty(value = "排序 0 普通 1 置顶")

View File

@@ -31,7 +31,7 @@ public class BlogCategory implements Serializable {
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
@ApiModelProperty(value = "博客分类")
@ApiModelProperty(value = "论坛分类")
private String category;

View File

@@ -35,7 +35,7 @@ public class Comment implements Serializable {
@ApiModelProperty(value = "评论唯一id")
private String commentId;
@ApiModelProperty(value = "1博客 2问答")
@ApiModelProperty(value = "1论坛 2问答")
private Integer topicCategory;
@ApiModelProperty(value = "评论主题id")

View File

@@ -12,7 +12,7 @@ import lombok.experimental.Accessors;
/**
* <p>
*
*
* </p>
*
* @author limqsh
@@ -31,7 +31,7 @@ public class SourceCategory implements Serializable {
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
@ApiModelProperty(value = "博客分类")
@ApiModelProperty(value = "论坛分类")
private String category;

View File

@@ -13,7 +13,7 @@ import lombok.experimental.Accessors;
/**
* <p>
*
*
* </p>
*
* @author limqsh
@@ -35,7 +35,7 @@ public class SourceComment implements Serializable {
@ApiModelProperty(value = "评论唯一id")
private String commentId;
@ApiModelProperty(value = "1博客 2问答")
@ApiModelProperty(value = "1论坛 2问答")
private Integer topicCategory;
@ApiModelProperty(value = "评论主题id")