| | |
| | | @ApiResponse(code = 200, message = "success", response = MallGoodsDetailsVo.class) |
| | | }) |
| | | @GetMapping(value = "/findMallGoodsDetailsById/{id}") |
| | | public FebsResponse findMallGoodsDetailsById(@PathVariable("id") Long id) { |
| | | return new FebsResponse().success().data(mallGoodsService.findMallGoodsDetailsById(id)); |
| | | public FebsResponse findMallGoodsDetailsById(@PathVariable("id") String id) { |
| | | return new FebsResponse().success().data(mallGoodsService.findMallGoodsDetailsById(Long.parseLong(id))); |
| | | } |
| | | |
| | | @ApiOperation(value = "获取商品评价", notes = "获取商品评价") |