opr_schema.js 277 B

1234567891011121314
  1. /**
  2. * Created by Zhong on 2018/3/22.
  3. */
  4. const mongoose = require('mongoose');
  5. const Schema = mongoose.Schema;
  6. const oprSchema = new Schema({
  7. operateDate: String,
  8. operator: String
  9. },
  10. {_id: false},
  11. {versionKey: false}
  12. );
  13. module.exports = oprSchema;