location.js 567 B

12345678910111213141516171819
  1. 'use strict';
  2. const Schema = require('mongoose').Schema;
  3. const metaPlugin = require('naf-framework-mongoose/lib/model/meta-plugin');
  4. // 位置表
  5. const LocationSchema = {
  6. name: { type: String, required: true, maxLength: 500 }, // 名称
  7. ibeacon: { type: String, required: true, maxLength: 500 }, // 蓝牙设备号
  8. };
  9. const schema = new Schema(LocationSchema, { toJSON: { virtuals: true } });
  10. schema.index({ id: 1 });
  11. schema.plugin(metaPlugin);
  12. module.exports = app => {
  13. const { mongoose } = app;
  14. return mongoose.model('Location', schema, 'location');
  15. };