'use strict'; const meta = require('./config/.early.js'); const Controller = require('egg').Controller; const { CrudController } = require('naf-framework-mongoose-free/lib/controller'); // 专利预警 class EarlyController extends Controller { constructor(ctx) { super(ctx); this.service = this.ctx.service.early; } } module.exports = CrudController(EarlyController, meta);