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