operationlog.js 1.1 KB

12345678910111213141516171819202122
  1. 'use strict';
  2. const Schema = require('mongoose').Schema;
  3. const metaPlugin = require('naf-framework-mongoose/lib/model/meta-plugin');
  4. // 交易记录表
  5. const OperationlogSchema = {
  6. // login_id: { type: String, required: false, maxLength: 100 }, // 登陆者id
  7. login_role: { type: String, required: false, maxLength: 5 }, // 登陆者角色(如:展会申请用户)
  8. login_name: { type: String, required: false, maxLength: 20 }, // 登陆者名字
  9. operation_edit: { type: String, required: false, maxLength: 50 }, // 操作者动作
  10. operation_result: { type: String, required: false, maxLength: 5 }, // 0成功 1失败
  11. type: { type: String, required: false, maxLength: 5, default: '0' }, // 0登录者信息、1操作信息、2.。。
  12. remark: { type: String, required: false, maxLength: 500 }, // 说明
  13. };
  14. const schema = new Schema(OperationlogSchema, { toJSON: { virtuals: true } });
  15. schema.index({ id: 1 });
  16. schema.plugin(metaPlugin);
  17. module.exports = app => {
  18. const { mongoose } = app;
  19. return mongoose.model('Operationlog', schema, 'operation_log');
  20. };