This commit is contained in:
robin
2022-07-07 22:16:39 +08:00
parent 264ab8d979
commit a9a4bd0981
86 changed files with 1198 additions and 310 deletions
-4
View File
@@ -1,4 +0,0 @@
/*系统启动后要做初始化*/
module.exports = (app) => {
console.log("启动完成");
}
-11
View File
@@ -1,11 +0,0 @@
module.exports = {
doc: "用户",
api: true,//是否需要生成api接口
model: {
uid: {type: "STRING", comment: '用户id'},
age: {type: "INTEGER", comment: '年龄', defaultValue: 0},
age2: {type: "INTEGER", comment: '年龄', defaultValue: 0},
},
}
-8
View File
@@ -1,8 +0,0 @@
module.exports = {
doc : "用户信息表",
model: {
uid : {type: "STRING", comment: '用户id'},
phone: {type: "STRING", comment: '手机号', defaultValue: null,},
}
}