'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 RefuteService extends CrudService { constructor(ctx) { super(ctx, 'refute'); this.model = this.ctx.model.Refute; } } module.exports = RefuteService;