'use strict'; const { CrudService } = require('naf-framework-mongoose-free/lib/service'); // 标签表 class GoodsService extends CrudService { constructor(ctx) { super(ctx, 'goods'); this.model = this.ctx.model.Goods; } } module.exports = GoodsService;