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