goods.js 268 B

123456789101112
  1. 'use strict';
  2. const { CrudService } = require('naf-framework-mongoose-free/lib/service');
  3. // 标签表
  4. class GoodsService extends CrudService {
  5. constructor(ctx) {
  6. super(ctx, 'goods');
  7. this.model = this.ctx.model.Goods;
  8. }
  9. }
  10. module.exports = GoodsService;