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