using System; using System.Xml.Serialization; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// KoubeiTradeOrderAggregateConsultResponse. /// public class KoubeiTradeOrderAggregateConsultResponse : AopResponse { /// /// 买家ID, 支付成功时才返回 /// [XmlElement("buyer_id")] public string BuyerId { get; set; } /// /// 付款用户类型; 支付宝(alipay)/微信(weixin),支付成功时才返回 /// [XmlElement("buyer_id_type")] public string BuyerIdType { get; set; } /// /// 用户实付金额,支付成功时才返回 /// [XmlElement("buyer_pay_amount")] public string BuyerPayAmount { get; set; } /// /// 订单创建时间 /// [XmlElement("create_time")] public string CreateTime { get; set; } /// /// 本交易支付时使用的所有优惠券信息 /// [XmlElement("discount_detail_list")] public DiscountDetailInfo DiscountDetailList { get; set; } /// /// 支付成功时间 /// [XmlElement("gmt_payment_time")] public string GmtPaymentTime { get; set; } /// /// 商家优惠金额 /// [XmlElement("merchant_discount_amount")] public string MerchantDiscountAmount { get; set; } /// /// 口碑订单号 /// [XmlElement("order_no")] public string OrderNo { get; set; } /// /// SUCCESS - 支付成功 FAILED - 支付失败 PROCESSING - 处理中 CLOSED - 关单 /// [XmlElement("order_status")] public string OrderStatus { get; set; } /// /// 商家请求订单号 /// [XmlElement("out_order_no")] public string OutOrderNo { get; set; } /// /// 支付渠道; 支付宝(alipay)/微信(wechat) /// [XmlElement("pay_channel")] public string PayChannel { get; set; } /// /// 平台优惠金额 /// [XmlElement("platform_discount_amount")] public string PlatformDiscountAmount { get; set; } /// /// 实收金额 /// [XmlElement("receipt_amount")] public string ReceiptAmount { get; set; } /// /// 订单金额 /// [XmlElement("total_amount")] public string TotalAmount { get; set; } /// /// 支付宝/微信交易号; 支付成功时才返回 /// [XmlElement("trade_no")] public string TradeNo { get; set; } } }