using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayAccountClearingcenterPayoffModifyModel Data Structure. /// [Serializable] public class AlipayAccountClearingcenterPayoffModifyModel : AopObject { /// /// 是否高优先级处理登记薄 /// [XmlElement("is_high_priority")] public bool IsHighPriority { get; set; } /// /// 待解付资金流水号 唯一键 /// [XmlElement("pay_off_no")] public string PayOffNo { get; set; } } }