NewGaoKaoApi/PaymentSDK/AliPay/Domain/UnfreezeOrderDetail.cs

61 lines
1.6 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// UnfreezeOrderDetail Data Structure.
/// </summary>
[Serializable]
public class UnfreezeOrderDetail : AopObject
{
/// <summary>
/// 支付宝订单号
/// </summary>
[XmlElement("alipay_order_no")]
public string AlipayOrderNo { get; set; }
/// <summary>
/// 订单创建时间
/// </summary>
[XmlElement("create_time")]
public string CreateTime { get; set; }
/// <summary>
/// 备注
/// </summary>
[XmlElement("memo")]
public string Memo { get; set; }
/// <summary>
/// 冻结订单的商户订单号
/// </summary>
[XmlElement("merchant_order_no")]
public string MerchantOrderNo { get; set; }
/// <summary>
/// 订单的最近修改时间
/// </summary>
[XmlElement("modified_time")]
public string ModifiedTime { get; set; }
/// <summary>
/// 冻结金额(含服务费)
/// </summary>
[XmlElement("order_amount")]
public string OrderAmount { get; set; }
/// <summary>
/// 订单状态I初始S成功F失败
/// </summary>
[XmlElement("order_status")]
public string OrderStatus { get; set; }
/// <summary>
/// 解冻金额(含服务费)
/// </summary>
[XmlElement("unfreeze_amount")]
public string UnfreezeAmount { get; set; }
}
}