using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// PayOffOrderVO Data Structure. /// [Serializable] public class PayOffOrderVO : AopObject { /// /// 金额,单位元,BigDecimal类型 /// [XmlElement("balance")] public string Balance { get; set; } /// /// 币种Code,如USD CNY /// [XmlElement("currency")] public string Currency { get; set; } /// /// 是否高优先级处理 /// [XmlElement("high_priority")] public bool HighPriority { get; set; } /// /// 待解付资金流水号 唯一键 /// [XmlElement("pay_off_no")] public string PayOffNo { get; set; } /// /// 待解付登记薄状态 /// [XmlElement("status")] public string Status { get; set; } } }