using Central.Control.WebApi.Enum; using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Central.Control.WebApi.Models.Request { /// /// /// public class PayWriteBackRequestDto { /// /// 支付流水号 /// public string PaySerialId { set; get; } = string.Empty; /// /// 订单号 /// public string OrderId { set; get; } = string.Empty; /// /// 支付状态 /// public PayStatusEnum PayStatus { set; get; } = PayStatusEnum.UnPay; /// /// 支付类型 /// public PayWayEnum PayWay { set; get; } = PayWayEnum.UnKnow; /// /// 买家支付用户号 /// public string BuyerId { set; get; } = string.Empty; /// /// 买家支付账号 /// public string BuyAccount { set; get; } = string.Empty; /// /// 卖家支付用户号 /// public string SellerId { set; get; } = string.Empty; /// /// 卖家支付账号 /// public string SellAccount { set; get; } = string.Empty; /// /// 支付金额 /// public decimal PayAmount { set; get; } /// /// 总金额(需要用来验证) /// public decimal TotalAmount { set; get; } /// /// 支付原始记录 /// public string PayResponse { set; get; } = string.Empty; /// /// 付款时间 /// public DateTime PayTime { set; get; } = DateTime.Now; } }