compleRation_installFeeItem.js 631 B

1234567891011121314151617181920212223242526272829
  1. 'use strict';
  2. /**
  3. *
  4. *
  5. * @author Zhong
  6. * @date 2018/10/23
  7. * @version
  8. */
  9. /*
  10. * 补充定额库用户新增安装增加费费用项
  11. *
  12. * */
  13. const mongoose = require('mongoose');
  14. const Schema = mongoose.Schema;
  15. //补充安装增加费-费用项
  16. const installFeeItemSchema = new Schema({
  17. userId: String,
  18. compilationId: String,
  19. ID: String,
  20. feeItem: String, //费用项
  21. feeType: String, //费用类型
  22. position: String, //记取位置
  23. section: [],
  24. deleted: false
  25. }, {versionKey: false});
  26. mongoose.model('complementary_ration_installation', installFeeItemSchema, 'complementary_ration_installation');