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,14 @@
using Yi.Framework.AiHub.Domain.Shared.Enums;
namespace Yi.Framework.AiHub.Application.Contracts.Dtos.Pay;
/// <summary>
/// 创建订单输入DTO
/// </summary>
public class CreateOrderInput
{
/// <summary>
/// 商品类型
/// </summary>
public GoodsTypeEnum GoodsType { get; set; }
}