'use strict'; const meta = require('./config/.roadShow.js'); const Controller = require('egg').Controller; const { CrudController } = require('naf-framework-mongoose-free/lib/controller'); // 项目路演 class RoadShowController extends Controller { constructor(ctx) { super(ctx); this.service = this.ctx.service.news.roadShow; } } module.exports = CrudController(RoadShowController, meta);