后端【新增】新增商家转账功能后台处理及接口回调获取。

This commit is contained in:
jianweie code
2025-07-29 00:51:57 +08:00
parent 596225acb1
commit c8b4bbd78d
38 changed files with 3385 additions and 436 deletions

View File

@@ -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
}
}