'use strict'; const { CrudService } = require('naf-framework-mongoose-free/lib/service'); const { BusinessError, ErrorCode } = require('naf-core').Error; // 项目 class ProjectService extends CrudService { constructor(ctx) { super(ctx, 'project'); this.model = this.ctx.model.Project; } } module.exports = ProjectService;