std_billsGuidance_lib.js 559 B

123456789101112131415161718192021222324252627
  1. 'use strict';
  2. /**
  3. *
  4. *
  5. * @author Zhong
  6. * @date 2018/5/29
  7. * @version
  8. */
  9. //清单指引库
  10. const mongoose = require('mongoose');
  11. const Schema = mongoose.Schema;
  12. const stdBillsGuidanceLib = new Schema({
  13. ID: String, //uuid
  14. compilationId: String,
  15. compilationName: String,
  16. billsLibId: Number,
  17. billsLibName: String,
  18. name: String,
  19. creator: String,
  20. createDate: String,
  21. deleted: {type: Boolean, default: false},
  22. }, {versionKey: false});
  23. mongoose.model('std_billsGuidance_lib', stdBillsGuidanceLib, 'std_billsGuidance_lib');