'use strict'; const { CrudService } = require('naf-framework-mongoose/lib/service'); const { BusinessError, ErrorCode } = require('naf-core').Error; const _ = require('lodash'); const assert = require('assert'); // 科教之旅-评价表 class Kjzl_chatService extends CrudService { constructor(ctx) { super(ctx, 'kjzl_chat'); this.model = this.ctx.model.Kjzl.KjzlChat; } } module.exports = Kjzl_chatService;