'use strict'; const Controller = require('egg').Controller; class Shop extends Controller { async Shop() { const { ctx } = this; const req = ctx.request.body; const res = await ctx.service.shopService.Shop(req); ctx.body = { state: 200, msg: res, }; } } module.exports = Shop;