Commit 0e647b81 authored by chenyan's avatar chenyan

2024/04/30_API文档接口开发

parent 99926a37
...@@ -51,6 +51,13 @@ public class ApiCustomNode implements Serializable { ...@@ -51,6 +51,13 @@ public class ApiCustomNode implements Serializable {
@Column(name = "node_desc") @Column(name = "node_desc")
private String nodeDesc; private String nodeDesc;
/**
* 路由
*/
@Column(name = "path")
private String path;
/** /**
* 节点顺序 * 节点顺序
*/ */
......
...@@ -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 = "path")
private String path;
/** /**
* 文档json内容 * 文档json内容
*/ */
......
...@@ -18,6 +18,11 @@ public class ApiDocTreeVo { ...@@ -18,6 +18,11 @@ public class ApiDocTreeVo {
*/ */
private String name; private String name;
/**
* 路由
*/
private String path;
/** /**
* 文档类型 * 文档类型
*/ */
......
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