cashing.js 396 B

12345678910111213
  1. 'use strict';
  2. const meta = require('./.cashing.js');
  3. const Controller = require('egg').Controller;
  4. const { CrudController } = require('naf-framework-mongoose/lib/controller');
  5. // 高企申报兑换
  6. class CashingController extends Controller {
  7. constructor(ctx) {
  8. super(ctx);
  9. this.service = this.ctx.service.cysci.cashing;
  10. }
  11. }
  12. module.exports = CrudController(CashingController, meta);