123456789101112131415 |
- '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 ProblemServiceService extends CrudService {
- constructor(ctx) {
- super(ctx, 'problem_service');
- this.model = this.ctx.model.Patent.ProblemService;
- }
- }
- module.exports = ProblemServiceService;
|