'use strict'; const { CrudService } = require('naf-framework-mongoose-free/lib/service'); const { BusinessError, ErrorCode } = require('naf-core').Error; const _ = require('lodash'); const assert = require('assert'); // 字典数据表 class DictdataService extends CrudService { constructor(ctx) { super(ctx, 'dictdata'); this.model = this.ctx.model.Dictdata; } } module.exports = DictdataService;