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