'use strict'; const meta = require('./.agent_mech.js'); const Controller = require('egg').Controller; const { CrudController } = require('naf-framework-mongoose/lib/controller'); // 代理机构 class Agent_mechController extends Controller { constructor(ctx) { super(ctx); this.service = this.ctx.service.patent.agentMech; } } module.exports = CrudController(Agent_mechController, meta);