level.js 554 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 LevelSchema = {
  6. dept_id: { type: String, required: true, maxLength: 200 }, // 部门id
  7. name: { type: String, required: true, maxLength: 200 }, // 职务名称
  8. };
  9. const schema = new Schema(LevelSchema, { toJSON: { virtuals: true } });
  10. schema.index({ id: 1 });
  11. schema.plugin(metaPlugin);
  12. module.exports = app => {
  13. const { mongoose } = app;
  14. return mongoose.model('Level', schema, 'level');
  15. };