1234567891011121314151617 |
- 'use strict';
- const { CrudService } = require('naf-framework-mongoose-free/lib/service');
- const { BusinessError, ErrorCode } = require('naf-core').Error;
- const _ = require('lodash');
- const assert = require('assert');
- const moment = require('moment');
- //
- class CashOutService extends CrudService {
- constructor(ctx) {
- super(ctx, 'cashout');
- this.model = this.ctx.model.User.CashOut;
- }
- }
- module.exports = CashOutService;
|