using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// BillSyncExtInfo Data Structure. /// [Serializable] public class BillSyncExtInfo : AopObject { /// /// 账单类型 /// [XmlElement("order_pay_type")] public string OrderPayType { get; set; } } }