From 1ccf00955f6d5d9c859f86f0be57cd7aa6f27715 Mon Sep 17 00:00:00 2001 From: ljl Date: Mon, 5 Feb 2024 16:10:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/ms/biz/service/impl/DsApiServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ms-biz/src/main/java/com/ms/biz/service/impl/DsApiServiceImpl.java b/ms-biz/src/main/java/com/ms/biz/service/impl/DsApiServiceImpl.java index 28109a8..1616aaf 100644 --- a/ms-biz/src/main/java/com/ms/biz/service/impl/DsApiServiceImpl.java +++ b/ms-biz/src/main/java/com/ms/biz/service/impl/DsApiServiceImpl.java @@ -169,7 +169,7 @@ public class DsApiServiceImpl implements DsApiService { @Override public CommonResponseDTO delAuthShop(Long shopId) { HashMap params = new HashMap<>(); - params.put("shopId", SecurityTool.encodeByAES(String.valueOf(shopId))); + params.put("userId", SecurityTool.encodeByAES(String.valueOf(shopId))); params.put("platform", CommonConst.PLATFORM); String resp = execute("/micro_move/del_auth_shop", params); return JSON.parseObject(resp, CommonResponseDTO.class);