增加Markdown格式编辑方式和查看,增加快速打开开放文档地址

This commit is contained in:
暮光:城中城
2020-06-21 22:52:45 +08:00
parent cb7cce2b98
commit 1dd6588d63
33 changed files with 340 additions and 114 deletions

View File

@@ -98,6 +98,11 @@ public class WikiPage implements Serializable {
* 顺序
*/
private Integer seqNo;
/**
* 编辑框类型 1=HTML 2=Markdown
*/
private Integer editorType;
public Long getId() {
return id;
@@ -233,4 +238,12 @@ public class WikiPage implements Serializable {
", seqNo=" + seqNo +
"}";
}
public Integer getEditorType() {
return editorType;
}
public void setEditorType(Integer editorType) {
this.editorType = editorType;
}
}