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); } - - }