From 2ccdf86ac2599562ca994bc4047ded2d925e8bae Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期五, 29 十一月 2024 16:33:12 +0800 Subject: [PATCH] 开发确认购物车订单逻辑 --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/GoodsController.java | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/GoodsController.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/GoodsController.java index aabd51b..91ea840 100644 --- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/GoodsController.java +++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/GoodsController.java @@ -74,5 +74,18 @@ return R.ok(list); } + + /** + * 根据id获取商品信息 + * @param id + * @return + */ + @ResponseBody + @PostMapping("/getGoodsById") + public R<Goods> getGoodsById(@RequestParam("id") Integer id){ + Goods goods = goodsService.getById(id); + return R.ok(goods); + } + } -- Gitblit v1.7.1