NewGaoKaoApi/PaymentSDK/AliPay/Domain/PayOffOrderVO.cs

43 lines
1.0 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>
/// PayOffOrderVO Data Structure.
/// </summary>
[Serializable]
public class PayOffOrderVO : AopObject
{
/// <summary>
/// 金额单位元BigDecimal类型
/// </summary>
[XmlElement("balance")]
public string Balance { get; set; }
/// <summary>
/// 币种Code如USD CNY
/// </summary>
[XmlElement("currency")]
public string Currency { get; set; }
/// <summary>
/// 是否高优先级处理
/// </summary>
[XmlElement("high_priority")]
public bool HighPriority { get; set; }
/// <summary>
/// 待解付资金流水号 唯一键
/// </summary>
[XmlElement("pay_off_no")]
public string PayOffNo { get; set; }
/// <summary>
/// 待解付登记薄状态
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}