ref 支付宝支付替换为原生SDK方式

This commit is contained in:
bootx
2024-06-16 17:20:39 +08:00
parent 676c0b3232
commit 72ac03f842
6 changed files with 154 additions and 44 deletions

View File

@@ -12,7 +12,23 @@ import lombok.Data;
@Schema(title = "支付宝支付参数")
public class AliPayParam implements ChannelParam {
/**
* 授权码(主动扫描用户的付款码)
*/
@Schema(description = "授权码(主动扫描用户的付款码)")
private String authCode;
/**
* 【描述】小程序支付中商户实际经营主体的小程序应用的appid也即最终唤起收银台支付所在的小程序的应用id
* 【注意事项】商户需要先在产品管理中心绑定该小程序appid否则下单会失败
*/
@Schema(description = "商户实际经营主体的小程序应用的appid")
private String opAppId;
/**
* 买家支付宝用户唯一标识
*/
@Schema(description = "买家支付宝用户唯一标识")
private String openId;
}