新增【后台】微信支付商家转账增加场景选择。

This commit is contained in:
jianweie code
2025-08-04 16:52:24 +08:00
parent 8b6029320e
commit fd37f1daa7
8 changed files with 235 additions and 30 deletions

View File

@@ -3450,5 +3450,61 @@ namespace CoreCms.Net.Configuration
}
#endregion
#region -ID
/// <summary>
/// 微信支付-商家转账场景ID
/// </summary>
public enum WeChatPayTransferSceneId
{
/// <summary>
/// 现金营销
/// </summary>
[Description("现金营销")]
= 1000,
/// <summary>
/// 佣金报酬
/// </summary>
[Description("佣金报酬")]
= 1005,
/// <summary>
/// 采购货款
/// </summary>
[Description("采购货款")]
= 1009,
/// <summary>
/// 二手回收
/// </summary>
[Description("二手回收")]
= 1010,
/// <summary>
/// 企业赔付
/// </summary>
[Description("企业赔付")]
= 1011,
/// <summary>
/// 行政补贴
/// </summary>
[Description("行政补贴")]
= 1002,
/// <summary>
/// 公益补助
/// </summary>
[Description("公益补助")]
= 1013,
/// <summary>
/// 保险理赔
/// </summary>
[Description("保险理赔")]
= 1004,
}
#endregion
}
}