using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// InvoiceCompanyQueryResult Data Structure. /// [Serializable] public class InvoiceCompanyQueryResult : AopObject { /// /// 发票限额信息 /// [XmlArray("amount_limit_dto_list")] [XmlArrayItem("invoice_amount_limit_d_t_o")] public List AmountLimitDtoList { get; set; } /// /// 企业税务信息 /// [XmlElement("invoice_company_dto")] public InvoiceCompanyDTO InvoiceCompanyDto { get; set; } /// /// 税号已开通产品信息 /// [XmlArray("invoice_open_product_dto_list")] [XmlArrayItem("invoice_open_product_d_t_o")] public List InvoiceOpenProductDtoList { get; set; } /// /// 入驻工单ID /// [XmlElement("register_id")] public string RegisterId { get; set; } /// /// 入驻工单状态 /// [XmlElement("register_status")] public long RegisterStatus { get; set; } } }