kjzl_expert_view.js 453 B

123456789101112131415
  1. 'use strict';
  2. const { CrudService } = require('naf-framework-mongoose/lib/service');
  3. const { BusinessError, ErrorCode } = require('naf-core').Error;
  4. const _ = require('lodash');
  5. const assert = require('assert');
  6. // 科教之旅-专家视点
  7. class Kjzl_expert_viewService extends CrudService {
  8. constructor(ctx) {
  9. super(ctx, 'kjzl_expert_view');
  10. this.model = this.ctx.model.Kjzl.KjzlExpertView;
  11. }
  12. }
  13. module.exports = Kjzl_expert_viewService;