From c87a187930ede0b403a662d6eb692a70adebb7be Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期日, 10 八月 2025 20:21:16 +0800 Subject: [PATCH] 订单导入 --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/GoodsShopController.java | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/GoodsShopController.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/GoodsShopController.java index 28222d3..dc51f49 100644 --- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/GoodsShopController.java +++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/GoodsShopController.java @@ -38,6 +38,8 @@ @Resource private ShopService shopService; + + @Resource private GoodsService goodsService; @@ -53,8 +55,10 @@ if (shop == null || shop.getStatus() ==2 || shop.getDelFlag()==1) { return R.ok(); } + one.setShopName(shop.getName()); one.setPhone(shop.getPhone()); + one.setAddress(shop.getAddress()); return R.ok(one); } -- Gitblit v1.7.1