namespace NCC.Extend.Entitys; public class AliPayEntity { /// /// 商户订单号(必填) /// public string OutTradeNo { get; set; } /// /// 金额(必填) /// public decimal TotalAmount { get; set; } /// /// 订单标题 /// public string Subject { get; set; } /// /// 可打折金额 /// public decimal DiscountableAmount { get; set; } = 0; /// /// 订单附加信息。 /// public string Body { get; set; } /// /// 买家支付宝用户唯一标识 /// public string BuyerOpenId { get; set; } }