using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayEbppInvoiceTaxnoBatchqueryResponse. /// public class AlipayEbppInvoiceTaxnoBatchqueryResponse : AopResponse { /// /// 发票要素列表 /// [XmlArray("invoice_element_list")] [XmlArrayItem("invoice_element_model")] public List InvoiceElementList { get; set; } /// /// 支付宝用户id /// [XmlElement("user_id")] public string UserId { get; set; } } }