std_price_info_areas.js 346 B

1234567891011
  1. // 信息价地区(一个费用定额共用地区)
  2. const mongoose = require('mongoose');
  3. const Schema = mongoose.Schema;
  4. const priceInfoArea = new Schema({
  5. serialNo: Number,
  6. ID: String,
  7. compilationID: String,
  8. name: String
  9. }, {versionKey: false});
  10. mongoose.model('std_price_info_areas', priceInfoArea, 'std_price_info_areas');