using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// TradeItemResult Data Structure.
///
[Serializable]
public class TradeItemResult : AopObject
{
///
/// 支付宝订单号。对账使用,不脱敏
///
[XmlElement("alipay_order_no")]
public string AlipayOrderNo { get; set; }
///
/// 交易创建时间
///
[XmlElement("gmt_create")]
public string GmtCreate { get; set; }
///
/// 交易支付时间
///
[XmlElement("gmt_pay")]
public string GmtPay { get; set; }
///
/// 交易退款时间
///
[XmlElement("gmt_refund")]
public string GmtRefund { get; set; }
///
/// 商品备注信息
///
[XmlElement("goods_memo")]
public string GoodsMemo { get; set; }
///
/// 商品名称
///
[XmlElement("goods_title")]
public string GoodsTitle { get; set; }
///
/// 商户订单号,创建支付宝交易时传入的信息。对账使用,不脱敏
///
[XmlElement("merchant_order_no")]
public string MerchantOrderNo { get; set; }
///
/// 商家优惠金额
///
[XmlElement("net_mdiscount")]
public string NetMdiscount { get; set; }
///
/// 对方账户
///
[XmlElement("other_account")]
public string OtherAccount { get; set; }
///
/// 订单退款金额
///
[XmlElement("refund_amount")]
public string RefundAmount { get; set; }
///
/// 服务费金额
///
[XmlElement("service_fee")]
public string ServiceFee { get; set; }
///
/// 门店名称
///
[XmlElement("store_name")]
public string StoreName { get; set; }
///
/// 门店编号
///
[XmlElement("store_no")]
public string StoreNo { get; set; }
///
/// 订单金额
///
[XmlElement("total_amount")]
public string TotalAmount { get; set; }
///
/// 订单状态(待付款,成功,关闭,待发货,待确认收货,已预付,进行中)
///
[XmlElement("trade_status")]
public string TradeStatus { get; set; }
///
/// 业务类型,帮助商户作为对账参考
///
[XmlElement("trade_type")]
public string TradeType { get; set; }
}
}