'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 UpdateapplyService extends CrudService { constructor(ctx) { super(ctx, "updateapply"); this.model = this.ctx.model.Updateapply; } } module.exports = UpdateapplyService;