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
+19
View File
@@ -0,0 +1,19 @@
module.exports = {
doc : "系统设置",
model: {
title: {type: "STRING", comment: '字段标题'},
doc : {type: "TEXT", comment: '字段说明'},
type : {
type : "ENUM", comment: '字段类型',
values: [
'int', // 整数
'string', //字符串
'json', // json
'rich' // 富文本
],
defaultValue: 'string',
},
code : {type: "STRING", comment: '字段code'},
value: {type: "TEXT", comment: '值'},
}
}