| | |
| | | * 商品列表 |
| | | */ |
| | | @GetMapping("/goodsList") |
| | | @ApiOperation(value = "商品列表") |
| | | @ApiOperation(value = "商品列表", tags = {"小程序-商城-首页-热门商品列表"}) |
| | | public TableDataInfo goodsList(Goods goods){ |
| | | startPage(); |
| | | return getDataTable(goodsService.goodsList(goods)); |
| | |
| | | * 商品详情 |
| | | */ |
| | | @GetMapping("/goodsDetail/{goodsId}") |
| | | public AjaxResult goodsDetail(@PathVariable("goodsId") Integer goodsId){ |
| | | return success(goodsService.getById(goodsId)); |
| | | @ApiOperation(value = "商品详情", tags = {"小程序-商城-首页-商品详情"}) |
| | | public AjaxResult goodsDetail(@PathVariable("goodsId") Long goodsId){ |
| | | return success(goodsService.goodsDetail(goodsId)); |
| | | } |
| | | |
| | | |