cashOut.js 433 B

1234567891011121314151617
  1. 'use strict';
  2. const { CrudService } = require('naf-framework-mongoose-free/lib/service');
  3. const { BusinessError, ErrorCode } = require('naf-core').Error;
  4. const _ = require('lodash');
  5. const assert = require('assert');
  6. const moment = require('moment');
  7. //
  8. class CashOutService extends CrudService {
  9. constructor(ctx) {
  10. super(ctx, 'cashout');
  11. this.model = this.ctx.model.User.CashOut;
  12. }
  13. }
  14. module.exports = CashOutService;