From 4f4ab0757d9baa3f146b7792f04e83cc324be391 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=9D=BE?= <8605635+zhang3064194730@user.noreply.gitee.com> Date: Fri, 7 Mar 2025 19:04:27 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E5=BD=93=E5=89=8D=E5=BA=97?= =?UTF-8?q?=E9=93=BA=E6=8B=93=E5=B1=95=E5=8F=82=E6=95=B0=E8=AF=A6=E6=83=85?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/czg/controller/admin/ShopExtendController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cash-api/account-server/src/main/java/com/czg/controller/admin/ShopExtendController.java b/cash-api/account-server/src/main/java/com/czg/controller/admin/ShopExtendController.java index a1b3b1763..3a68e1eca 100644 --- a/cash-api/account-server/src/main/java/com/czg/controller/admin/ShopExtendController.java +++ b/cash-api/account-server/src/main/java/com/czg/controller/admin/ShopExtendController.java @@ -42,7 +42,7 @@ public class ShopExtendController { */ @SaAdminCheckPermission(value = "shopExtend:detail", name = "店铺拓展参数详情") @GetMapping("/detail") - public CzgResult detail(String autoKey) { + public CzgResult detail(@RequestParam String autoKey) { return CzgResult.success(shopExtendService.getOne(new QueryWrapper().eq(ShopExtend::getShopId, StpKit.USER.getShopId()).eq(ShopExtend::getAutoKey, autoKey))); }