'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'); // 教练 class CoachService extends CrudService { constructor(ctx) { super(ctx, 'coach'); this.model = this.ctx.model.User.Coach; } } module.exports = CoachService;