|
@@ -0,0 +1,19 @@
|
|
|
|
+'use strict';
|
|
|
|
+const Schema = require('mongoose').Schema;
|
|
|
|
+const moment = require('moment');
|
|
|
|
+const metaPlugin = require('naf-framework-mongoose/lib/model/meta-plugin');
|
|
|
|
+// 配置表表
|
|
|
|
+const config = {
|
|
|
|
+ title: { type: String }, // 标题
|
|
|
|
+ type: { type: String }, // 类型
|
|
|
|
+ setting: { type: Object }, // 设置内容
|
|
|
|
+ remark: { type: String, maxLength: 200 },
|
|
|
|
+ create_time: { type: String, default: moment().format('YYYY-MM-DD HH:mm:ss') },
|
|
|
|
+};
|
|
|
|
+const schema = new Schema(config, { toJSON: { virtuals: true } });
|
|
|
|
+schema.index({ id: 1 });
|
|
|
|
+schema.plugin(metaPlugin);
|
|
|
|
+module.exports = app => {
|
|
|
|
+ const { mongoose } = app;
|
|
|
|
+ return mongoose.model('Config', schema, 'config');
|
|
|
|
+};
|