'use strict'; const meta = require('./config/.cashing.js'); const Controller = require('egg').Controller; const { CrudController } = require('naf-framework-mongoose-free/lib/controller'); // 高企申报兑换 class CashingController extends Controller { constructor(ctx) { super(ctx); this.service = this.ctx.service.cysci.cashing; } } module.exports = CrudController(CashingController, meta);