arrange.js 909 B

1234567891011121314151617181920212223242526272829
  1. 'use strict';
  2. const Schema = require('mongoose').Schema;
  3. const moment = require('moment');
  4. const metaPlugin = require('naf-framework-mongoose/lib/model/meta-plugin');
  5. const { ObjectId } = require('mongoose').Types;
  6. // 安排
  7. const object = new Schema({
  8. time: { type: Array }, // 时间
  9. money: { type: Number, default: 0 }, // 金额
  10. space_id: { type: ObjectId }, // 场地id
  11. is_use: { type: Boolean, default: true }, // 0-允许使用;1-禁止使用
  12. });
  13. // 场地安排表
  14. const arrange = {
  15. date: { type: String }, // 日期
  16. arrange: { type: [ object ] }, // 安排
  17. remark: { type: String },
  18. };
  19. const schema = new Schema(arrange, { toJSON: { virtuals: true } });
  20. schema.index({ id: 1 });
  21. schema.index({ date: 1 });
  22. schema.index({ 'meta.createdAt': 1 });
  23. schema.plugin(metaPlugin);
  24. module.exports = app => {
  25. const { mongoose } = app;
  26. return mongoose.model('Arrange', schema, 'arrange');
  27. };