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