const Controller = require("egg").Controller class Product extends Controller { async list() { const {ctx: {query}} = this this.ctx.body = {code: 0, data: []} this.ctx.status = 200 } } module.exports = Product