'use strict'; const _ = require('lodash'); const meta = require('./.newsroadshow.js'); const Controller = require('egg').Controller; const { CrudController } = require('naf-framework-mongoose/lib/controller'); // 科目管理 class NewsroadshowController extends Controller { constructor(ctx) { super(ctx); this.service = this.ctx.service.newsroadshow; } } module.exports = CrudController(NewsroadshowController, meta);