123456789101112131415 |
- 'use strict';
- module.exports = app => {
- const mongoose = app.mongoose;
- const Schema = mongoose.Schema;
- const SysMenuSchema = new Schema({
- name: { type: String },
- address: { type: String },
- fid: { type: String },
- icon: { type: String },
- order: { type: Number },
- });
- return mongoose.model('sysMenu', SysMenuSchema, 'sys_menu');
- };
|