From 23e0fb1ababb7555280005061b6318e769253c31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Fri, 5 Sep 2025 11:19:17 +0800 Subject: [PATCH] =?UTF-8?q?refactor(controller):=20=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E6=97=A5=E5=BF=97=E8=BE=93=E5=87=BA=E4=BF=A1=E6=81=AF=E5=B9=B6?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=9C=AA=E4=BD=BF=E7=94=A8=E7=9A=84=E5=AF=BC?= =?UTF-8?q?=E5=85=A5-=20=E5=9C=A8=20WxLoginController=20=E4=B8=AD=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=20tenantId=20=E7=9A=84=E6=97=A5=E5=BF=97=E8=BE=93?= =?UTF-8?q?=E5=87=BA=E4=BF=A1=E6=81=AF=EF=BC=8C=E4=BD=BF=E5=85=B6=E6=9B=B4?= =?UTF-8?q?=E5=85=B7=E6=8F=8F=E8=BF=B0=E6=80=A7=20-=20=E5=9C=A8=20ShopDeal?= =?UTF-8?q?erApplyController=20=E4=B8=AD=E5=88=A0=E9=99=A4=E6=9C=AA?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=E7=9A=84=20PageParam=20=E5=AF=BC=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../gxwebsoft/common/system/controller/WxLoginController.java | 2 +- .../gxwebsoft/shop/controller/ShopDealerApplyController.java | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/com/gxwebsoft/common/system/controller/WxLoginController.java b/src/main/java/com/gxwebsoft/common/system/controller/WxLoginController.java index 9a31563..1fa9e7b 100644 --- a/src/main/java/com/gxwebsoft/common/system/controller/WxLoginController.java +++ b/src/main/java/com/gxwebsoft/common/system/controller/WxLoginController.java @@ -425,7 +425,7 @@ public class WxLoginController extends BaseController { try { // 从scene参数中解析租户ID Integer tenantId = extractTenantIdFromScene(scene); - System.out.println("tenantId = " + tenantId); + System.out.println("从scene参数中解析租户ID = " + tenantId); if (tenantId == null) { response.setStatus(HttpServletResponse.SC_BAD_REQUEST); response.getWriter().write("{\"error\":\"无法从scene参数中获取租户信息\"}"); diff --git a/src/main/java/com/gxwebsoft/shop/controller/ShopDealerApplyController.java b/src/main/java/com/gxwebsoft/shop/controller/ShopDealerApplyController.java index f3d935b..a2fd323 100644 --- a/src/main/java/com/gxwebsoft/shop/controller/ShopDealerApplyController.java +++ b/src/main/java/com/gxwebsoft/shop/controller/ShopDealerApplyController.java @@ -8,7 +8,6 @@ import com.gxwebsoft.shop.entity.ShopDealerApply; import com.gxwebsoft.shop.param.ShopDealerApplyParam; import com.gxwebsoft.common.core.web.ApiResult; import com.gxwebsoft.common.core.web.PageResult; -import com.gxwebsoft.common.core.web.PageParam; import com.gxwebsoft.common.core.web.BatchParam; import com.gxwebsoft.common.core.annotation.OperationLog; import com.gxwebsoft.common.system.entity.User;