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