'use strict'; const Controller = require('egg').Controller; const { CrudController } = require('naf-framework-mongoose-free/lib/controller'); const { BusinessError, ErrorCode } = require('naf-core').Error; const { ObjectId } = require('mongoose').Types; // 项目测试及管理员登陆 class HomeController extends Controller { async index() { const { ctx } = this; ctx.body = 'hello'; } } module.exports = CrudController(HomeController, {});