mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:03:27 +08:00
【新增】增加支付宝h5支付,pc端支付,app支付等多种支付宝支付模式。
This commit is contained in:
@@ -3365,5 +3365,45 @@ namespace CoreCms.Net.Configuration
|
||||
|
||||
#endregion
|
||||
|
||||
#region 支付宝
|
||||
|
||||
/// <summary>
|
||||
/// 微信支付交易类型
|
||||
/// </summary>
|
||||
public enum AliPayPayTradeType
|
||||
{
|
||||
/// <summary>
|
||||
/// JSAPI(支付宝小程序支付)
|
||||
/// </summary>
|
||||
[Description("JSAPI(支付宝小程序支付)")]
|
||||
JSAPI = 1,
|
||||
|
||||
/// <summary>
|
||||
/// JSAPI_PC(电脑网站支付)
|
||||
/// </summary>
|
||||
[Description("JSAPI_PC(电脑网站支付)")]
|
||||
JSAPI_PC = 2,
|
||||
|
||||
/// <summary>
|
||||
/// NATIVE(扫码支付)
|
||||
/// </summary>
|
||||
[Description("NATIVE(扫码支付)")]
|
||||
ScanQRCodes = 3,
|
||||
|
||||
/// <summary>
|
||||
/// APP(APP支付)
|
||||
/// </summary>
|
||||
[Description("APP(APP支付)")]
|
||||
APP = 4,
|
||||
|
||||
/// <summary>
|
||||
/// MWEB(H5支付)
|
||||
/// </summary>
|
||||
[Description("MWEB(H5支付)")]
|
||||
MWEB = 5
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user