roles.js 559 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 RolesSchema = {
  6. code: { type: String, required: true, maxLength: 200 }, // 权限code
  7. name: { type: String, required: true, maxLength: 200 }, // 权限名称
  8. };
  9. const schema = new Schema(RolesSchema, { toJSON: { virtuals: true } });
  10. schema.index({ id: 1 });
  11. schema.plugin(metaPlugin);
  12. module.exports = app => {
  13. const { mongoose } = app;
  14. return mongoose.model('Roles', schema, 'roles');
  15. };