一键登录接口兼容支付宝

This commit is contained in:
Guoqs
2024-06-14 17:15:36 +08:00
parent 0c74b24210
commit 93706fab1d
9 changed files with 79 additions and 25 deletions

View File

@@ -13,4 +13,9 @@ public class AlipayLoginDTO {
* 小程序appId
*/
private String appId;
/**
* 请求来源, 参见{@link com.jsowell.common.enums.adapay.AdapayPayChannelEnum}
*/
private String requestSource;
}

View File

@@ -26,12 +26,17 @@ public class MemberRegisterAndLoginDTO {
private String appId;
/**
* 运营商id
* 一级运营商id
*/
private String merchantId;
private String firstLevelMerchantId;
/**
* 微信用户openId
*/
private String openId;
/**
* 请求来源, 参见{@link com.jsowell.common.enums.adapay.AdapayPayChannelEnum}
*/
private String requestSource;
}

View File

@@ -21,4 +21,9 @@ public class WechatLoginDTO {
* 用来获取openId的Code
*/
private String openIdCode;
/**
* 请求来源, 参见{@link com.jsowell.common.enums.adapay.AdapayPayChannelEnum}
*/
private String requestSource;
}

View File

@@ -25,5 +25,8 @@ public class AgentWechatLoginDTO {
*/
private String openIdCode;
/**
* 请求来源, 参见{@link com.jsowell.common.enums.adapay.AdapayPayChannelEnum}
*/
private String requestSource;
}