logs.js 888 B

123456789101112131415161718192021222324252627
  1. 'use strict';
  2. const Schema = require('mongoose').Schema;
  3. const metaPlugin = require('naf-framework-mongoose-free/lib/model/meta-plugin');
  4. // 日志表
  5. const logs = {
  6. user_id: { type: String }, // 用户id
  7. account: { type: String }, // 账号
  8. name: { type: String }, // 账号名称
  9. _tenant: { type: String }, // 所属分站
  10. opera: { type: String }, // 操作
  11. path: { type: String }, // 请求地址
  12. module: { type: String }, // 模块
  13. remark: { type: String },
  14. };
  15. const schema = new Schema(logs, { toJSON: { virtuals: true } });
  16. schema.index({ id: 1 });
  17. schema.index({ user_id: 1 });
  18. schema.index({ account: 1 });
  19. schema.index({ name: 1 });
  20. schema.index({ _tenant: 1 });
  21. schema.index({ opera: 1 });
  22. schema.index({ 'meta.createdAt': 1 });
  23. schema.plugin(metaPlugin);
  24. module.exports = app => {
  25. const { mongoose } = app;
  26. return mongoose.model('Logs', schema, 'logs');
  27. };