12345678910111213 |
- 'use strict';
- module.exports = app => {
- const mongoose = app.mongoose;
- const Schema = mongoose.Schema;
- const SysDeptDecSchema = new Schema({
- level: { type: String }, // 地区级别(0启用/1禁止)
- tableStatus: { type: Number }, // 功能状态(0启用/1禁止)
- excelStatus: { type: Number }, // 功能状态(0启用/1禁止)
- });
- return mongoose.model('sysDeptDec', SysDeptDecSchema, 'sys_dept_dec');
- };
|