123456789101112131415 |
- 'use strict';
- const { CrudService } = require('naf-framework-mongoose/lib/service');
- const { BusinessError, ErrorCode } = require('naf-core').Error;
- const _ = require('lodash');
- const assert = require('assert');
- // 科教之旅-专家视点
- class Kjzl_expert_viewService extends CrudService {
- constructor(ctx) {
- super(ctx, 'kjzl_expert_view');
- this.model = this.ctx.model.Kjzl.KjzlExpertView;
- }
- }
- module.exports = Kjzl_expert_viewService;
|