nihao b7c487fe40 新曾字段position 5 years ago
..
README.md c29e37b9a5 Update README.md 7 years ago
column.js 53481a38ef 菜单增加字段 5 years ago
menu.js b7c487fe40 新曾字段position 5 years ago
news.js f42a8a8cf3 news模块实现 6 years ago
site.js c6ab8084ee 完成服务和测试 6 years ago

README.md

数据模型

'use strict';
const Schema = require('mongoose').Schema;

const SchemaDefine = {
  code: { type: String, required: true, maxLength: 64 },
  name: { type: String, required: true, maxLength: 128 },
  order: Number,
};
const schema = new Schema(SchemaDefine);
schema.index({ code: 1 }, { unique: true });

module.exports = app => {
  const { mongoose } = app;
  return mongoose.model('CodeCategory', schema, 'naf_code_category');
};