'use strict'; const { CrudService } = require('naf-framework-mongoose-free/lib/service'); const { BusinessError, ErrorCode } = require('naf-core').Error; const { ObjectId } = require('mongoose').Types; const _ = require('lodash'); const assert = require('assert'); // 建言献策,网上调查 class SurveyService extends CrudService { constructor(ctx) { super(ctx, 'survey'); this.model = this.ctx.model.News.Survey; } } module.exports = SurveyService;