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