From 787183b2ab059e30d9defabddb6440aaaed09668 Mon Sep 17 00:00:00 2001 From: Guoqs Date: Wed, 27 Mar 2024 14:47:35 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E6=95=B4=E7=90=86=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../thirdparty/platform/ThirdPartyPlatformService.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/ThirdPartyPlatformService.java b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/ThirdPartyPlatformService.java index 1d9462db6..a46c0c833 100644 --- a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/ThirdPartyPlatformService.java +++ b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/ThirdPartyPlatformService.java @@ -24,11 +24,15 @@ import java.util.Map; public interface ThirdPartyPlatformService { + /** + * query_token 获取token,提供给第三方平台使用 + * @param dto + * @return + */ default Map queryToken(CommonParamsDTO dto) { throw new UnsupportedOperationException("This method is not yet implemented"); } - // =================================================================================== // // ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ 由我方平台实现此接口,对方平台调用的查询接口 ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ // // =================================================================================== // @@ -450,6 +454,4 @@ public interface ThirdPartyPlatformService { return StringUtils.equals(sig, sign); } - - }