cashing.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 cashing = {
  8. no: { type: String }, // 兑付申请号(自动生成)
  9. coupons_id: { type: ObjectId }, // 券的id
  10. company: { type: String }, // 申请单位
  11. apply_person: { type: String }, // 申请人
  12. phone: { type: String }, // 联系电话
  13. money: { type: Number }, // 订单金额
  14. allowance: { type: Number }, // 抵扣金额
  15. total: { type: Number }, // 应收金额
  16. create_time: { type: String }, // 提交时间,服务端生成
  17. end_time: { type: String }, // 最后审核时间
  18. contract: { type: Array }, // 上传合同
  19. accept: { type: Array }, // 官方受理通知书
  20. cost: { type: Array }, // 官方缴费证明
  21. result: { type: Array }, // 服务结果证明
  22. result_else: { type: Array }, // 其他能够证明服务真是发生的材料
  23. status: { type: String, default: '0' }, // 0-待审核;1-通过;-1-拒绝
  24. record: { type: Array }, // 记录
  25. user_id: { type: ObjectId }, // 用户id
  26. from_id: { type: ObjectId }, // 高企申报/ 研发补贴/奖励兑换的数据id
  27. remark: { type: String },
  28. };
  29. const schema = new Schema(cashing, { toJSON: { virtuals: true } });
  30. schema.index({ id: 1 });
  31. schema.index({ no: 1 });
  32. schema.index({ coupons_id: 1 });
  33. schema.index({ company: 1 });
  34. schema.index({ apply_person: 1 });
  35. schema.index({ create_time: 1 });
  36. schema.index({ end_time: 1 });
  37. schema.index({ from_id: 1 });
  38. schema.index({ status: 1 });
  39. schema.index({ 'meta.createdAt': 1 });
  40. schema.plugin(metaPlugin);
  41. module.exports = app => {
  42. const { mongoose } = app;
  43. return mongoose.model('Cashing', schema, 'cashing');
  44. };