interview.js 467 B

12345678910111213141516
  1. 'use strict';
  2. const { CrudService } = require('naf-framework-mongoose-free/lib/service');
  3. const { BusinessError, ErrorCode } = require('naf-core').Error;
  4. const { ObjectId } = require('mongoose').Types;
  5. const _ = require('lodash');
  6. const assert = require('assert');
  7. // 嘉宾访谈
  8. class InterviewService extends CrudService {
  9. constructor(ctx) {
  10. super(ctx, 'interview');
  11. this.model = this.ctx.model.News.Interview;
  12. }
  13. }
  14. module.exports = InterviewService;