mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 19:13:26 +08:00
后端【新增】新增商家转账功能后台处理及接口回调获取。
This commit is contained in:
@@ -351,7 +351,9 @@ namespace CoreCms.Net.Configuration
|
||||
[Description("企业付款到银行卡")]
|
||||
企业付款到银行卡 = 2,
|
||||
[Description("商家转账到零钱")]
|
||||
商家转账到零钱 = 3
|
||||
商家转账到零钱 = 3,
|
||||
[Description("商家转账")]
|
||||
商家转账 = 4
|
||||
}
|
||||
|
||||
#endregion
|
||||
@@ -3406,6 +3408,47 @@ namespace CoreCms.Net.Configuration
|
||||
|
||||
#endregion
|
||||
|
||||
#region 微信在线客服
|
||||
|
||||
/// <summary>
|
||||
/// 抽奖活动类型
|
||||
/// </summary>
|
||||
public enum WeChatAutoReplyMatchModel
|
||||
{
|
||||
/// <summary>
|
||||
/// 完全等于
|
||||
/// </summary>
|
||||
[Description("完全等于")]
|
||||
Complete = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 模糊包含
|
||||
/// </summary>
|
||||
[Description("模糊包含")]
|
||||
FuzzyMatching = 2,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region 微信支付相关
|
||||
|
||||
/// <summary>
|
||||
/// 微信支付验证微信支付身份方式
|
||||
/// </summary>
|
||||
public enum WeChatPayIdentityVerificationMethods
|
||||
{
|
||||
/// <summary>
|
||||
/// 平台证书
|
||||
/// </summary>
|
||||
[Description("平台证书")]
|
||||
PlatformCertificate = 0,
|
||||
/// <summary>
|
||||
/// 微信支付公钥
|
||||
/// </summary>
|
||||
[Description("微信支付公钥")]
|
||||
PlatformPublicKey = 1,
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user