12345678910111213141516 |
- 'use strict';
- const assert = require('assert');
- const _ = require('lodash');
- const { ObjectId } = require('mongoose').Types;
- const { CrudService } = require('naf-framework-mongoose/lib/service');
- const { ZhwldriverError, ErrorCode } = require('naf-core').Error;
- class TreatyService extends CrudService {
- constructor(ctx) {
- super(ctx, 'treaty');
- this.model = this.ctx.model.Treaty;
- }
- }
- module.exports = TreatyService;
|