'use strict'; const { CrudService } = require('naf-framework-mongoose/lib/service'); // 积分记录 class RecordService extends CrudService { constructor(ctx) { super(ctx, 'record'); this.model = this.ctx.model.Record; } } module.exports = RecordService;