order.js 1.1 KB

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 order = {
  8. date: { type: String }, // 下单日期
  9. arrange_id: { type: ObjectId }, // 安排内容的数据id,arrange中arrange的id
  10. openid: { type: String }, // 微信openid
  11. order_no: { type: String }, // 订单号
  12. phone: { type: String }, // 预留电话
  13. name: { type: String }, // 预留姓名
  14. status: { type: String, default: '0' }, // 状态0-未支付;1-支付完成
  15. pay_way: { type: String }, // 0-微信直接支付;1-vip账户划走;
  16. remark: { type: String },
  17. };
  18. const schema = new Schema(order, { toJSON: { virtuals: true } });
  19. schema.index({ id: 1 });
  20. schema.index({ date: 1 });
  21. schema.index({ openid: 1 });
  22. schema.index({ order_no: 1 });
  23. schema.index({ status: 1 });
  24. schema.index({ 'meta.createdAt': 1 });
  25. schema.plugin(metaPlugin);
  26. module.exports = app => {
  27. const { mongoose } = app;
  28. return mongoose.model('Order', schema, 'order');
  29. };