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