using Hncore.Payment.Enum; using System.Collections.Generic; namespace Hncore.Payment.Request { public class CreateOrderRequestBase: PaymentRequestBase { /// /// 业务方附加信息,回调时原样返回 /// public string Attach { get; set; } /// /// 总金额,单位:分 /// public int TotalFee { get; set; } /// /// 支付类型 /// public PaymentType PaymentType { get; set; } = PaymentType.OnlinePayWechart; /// /// 回调地址 /// public string CallbackUrl { get; set; } /// /// 商品描述 /// public string Body { get; set; } /// /// 业务订单号 /// public string OrderId { get; set; } } }