menu.js 670 B

1234567891011121314151617
  1. // 'use strict';
  2. // const Schema = require('mongoose').Schema;
  3. // const metaPlugin = require('naf-framework-mongoose/lib/model/meta-plugin');
  4. // const Menu = {
  5. // title: { type: String, required: true, maxLength: 200 }, // 名称
  6. // router: { type: String, required: true, maxLength: 200 }, // 路由
  7. // status: { type: String, required: true, maxLength: 200, default: '0' }, // 状态:0=>使用中;1=>已禁用
  8. // };
  9. // const schema = new Schema(Menu, { toJSON: { virtuals: true } });
  10. // schema.index({ id: 1 });
  11. // schema.plugin(metaPlugin);
  12. // module.exports = app => {
  13. // const { mongoose } = app;
  14. // return mongoose.model('Menu', schema, 'menu');
  15. // };