'use strict'; const meta = require('./.channel_video.js'); const Controller = require('egg').Controller; const { CrudController } = require('naf-framework-mongoose/lib/controller'); // 科技频道-视频 class Channel_videoController extends Controller { constructor(ctx) { super(ctx); this.service = this.ctx.service.dock.channelVideo; } } module.exports = CrudController(Channel_videoController, meta);