Commit 388774f0 authored by cuijun's avatar cuijun

Merge remote-tracking branch 'origin/rs_gdweb_platform' into rs_gdweb_platform

parents db5daa76 82c5a70d
...@@ -38,6 +38,12 @@ public class ApiDoc implements Serializable { ...@@ -38,6 +38,12 @@ public class ApiDoc implements Serializable {
@Column(name = "doc_url") @Column(name = "doc_url")
private String docUrl; private String docUrl;
/**
* 文档下载地址
*/
@Column(name = "download_url")
private String downloadUrl;
/** /**
* 路由 * 路由
*/ */
......
...@@ -23,6 +23,11 @@ public class ApiDocTreeVo { ...@@ -23,6 +23,11 @@ public class ApiDocTreeVo {
*/ */
private String path; private String path;
/**
* 文档下载地址
*/
private String downloadUrl;
/** /**
* 文档类型 * 文档类型
*/ */
......
...@@ -52,6 +52,7 @@ ...@@ -52,6 +52,7 @@
ad.`name`, ad.`name`,
ad.doc_type, ad.doc_type,
ad.doc_url, ad.doc_url,
ad.download_url,
ad.path, ad.path,
ad.json_content, ad.json_content,
ad.rewrite_domain, ad.rewrite_domain,
......
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