This commit is contained in:
robin
2022-05-21 06:48:12 +08:00
parent b5f918776e
commit 96333ae7a9
45 changed files with 650 additions and 64 deletions
+14
View File
@@ -0,0 +1,14 @@
module.exports = {
doc : "路由表表",
model: {
name: {type: "STRING", comment: '路由名称'},
key : {type: "STRING", comment: '路由标识,一般是路由url或页面url'},
type: {
type : "ENUM", comment: '字段类型',
values: [
'api', // api地址
'url', //url地址
]
},
}
}