'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 PatentroomService extends CrudService { constructor(ctx) { super(ctx, 'patentroom'); this.model = this.ctx.model.Patent.Patentroom; } } module.exports = PatentroomService;