'use strict'; const meta = require('./config/.goodsSet.js'); const Controller = require('egg').Controller; const { CrudController } = require('naf-framework-mongoose-free/lib/controller'); // class GoodsSetController extends Controller { constructor(ctx) { super(ctx); this.service = this.ctx.service.shop.goodsSet; } } module.exports = CrudController(GoodsSetController, meta);