reward.js 1.3 KB

123456789101112131415161718192021222324252627282930313233
  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 reward = {
  8. type: { type: String }, // 研发补贴/奖励兑换
  9. company: { type: String }, // 申领企业
  10. apply_person: { type: String }, // 申领人
  11. phone: { type: String }, // 联系电话
  12. qyfr: { type: Array }, // 企业法人
  13. yyzz: { type: Array }, // 营业执照
  14. qylr: { type: Array }, // 企业利润
  15. is_cashing: { type: String, default: '0' }, // 是否兑付
  16. status: { type: String, default: '0' }, // 状态:0:待审核;1-审核通过(生成订单);1-审核拒绝
  17. remark: { type: String },
  18. user_id: { type: ObjectId }, // 申领人id
  19. record: { type: Array }, // 记录
  20. };
  21. const schema = new Schema(reward, { toJSON: { virtuals: true } });
  22. schema.index({ id: 1 });
  23. schema.index({ type: 1 });
  24. schema.index({ company: 1 });
  25. schema.index({ user_id: 1 });
  26. schema.index({ status: 1 });
  27. schema.index({ is_cashing: 1 });
  28. schema.index({ 'meta.createdAt': 1 });
  29. schema.plugin(metaPlugin);
  30. module.exports = app => {
  31. const { mongoose } = app;
  32. return mongoose.model('Reward', schema, 'reward');
  33. };