feat: 完成支付宝接入

This commit is contained in:
chenchun
2025-08-13 12:07:35 +08:00
parent 9332b17fc1
commit 0ba4e3240b
14 changed files with 751 additions and 21 deletions

View File

@@ -0,0 +1,29 @@
namespace Yi.Framework.AiHub.Domain.Shared.Enums;
public enum TradeStatusEnum
{
/// <summary>
/// 准备发起
/// </summary>
WAIT_TRADE = 0,
/// <summary>
/// 交易创建
/// </summary>
WAIT_BUYER_PAY = 10,
/// <summary>
/// 交易关闭
/// </summary>
TRADE_CLOSED = 20,
/// <summary>
/// 交易成功
/// </summary>
TRADE_SUCCESS = 100,
/// <summary>
/// 交易结束
/// </summary>
TRADE_FINISHED = -10
}