update 整理接口

This commit is contained in:
2024-03-27 14:47:35 +08:00
parent e770b121df
commit 787183b2ab

View File

@@ -24,11 +24,15 @@ import java.util.Map;
public interface ThirdPartyPlatformService {
/**
* query_token 获取token提供给第三方平台使用
* @param dto
* @return
*/
default Map<String, String> queryToken(CommonParamsDTO dto) {
throw new UnsupportedOperationException("This method is not yet implemented");
}
// =================================================================================== //
// ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ 由我方平台实现此接口,对方平台调用的查询接口 ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ //
// =================================================================================== //
@@ -450,6 +454,4 @@ public interface ThirdPartyPlatformService {
return StringUtils.equals(sig, sign);
}
}