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 Dock_videoService extends CrudService {
- constructor(ctx) {
- super(ctx, 'dock_video');
- this.model = this.ctx.model.Dock.DockVideo;
- }
- }
- module.exports = Dock_videoService;
|