using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayEbppInvoiceDetailOutputQueryResponse. /// public class AlipayEbppInvoiceDetailOutputQueryResponse : AopResponse { /// /// 防伪码 /// [XmlElement("anti_fake_code")] public string AntiFakeCode { get; set; } /// /// 不含税金额(废弃) /// [XmlElement("ex_tax_amount")] public string ExTaxAmount { get; set; } /// /// 发票报销状态 取值范围: WAIT_EXPENSE-未报销 EXPENSE_PROCESSING-报销中 EXPENSE_FINISHED-已报销 /// [XmlElement("expense_status")] public string ExpenseStatus { get; set; } /// /// 该发票可能存在异常,请核实后使用 true:无异常 false:存在异常 /// [XmlElement("has_risk")] public bool HasRisk { get; set; } /// /// 是否已上传发票pdf文件 false-未上传 true-已上传 /// [XmlElement("has_upload_pdf")] public string HasUploadPdf { get; set; } /// /// 发票金额(价税合计金额) /// [XmlElement("invoice_amount")] public string InvoiceAmount { get; set; } /// /// 发票代码 /// [XmlElement("invoice_code")] public string InvoiceCode { get; set; } /// /// 开票日期 /// [XmlElement("invoice_date")] public string InvoiceDate { get; set; } /// /// 发票缩略图地址 /// [XmlElement("invoice_img_url")] public string InvoiceImgUrl { get; set; } /// /// 发票内容项 /// [XmlArray("invoice_item_content_list")] [XmlArrayItem("invoice_item_content")] public List InvoiceItemContentList { get; set; } /// /// 发票号码 /// [XmlElement("invoice_no")] public string InvoiceNo { get; set; } /// /// 发票状态 SUCCEED-成功 EXPIRED-已失效 TRANSFERRED-已转交 /// [XmlElement("invoice_status")] public string InvoiceStatus { get; set; } /// /// 发票类型 值有两种情况:blue-蓝票 red-红票 /// [XmlElement("invoice_type")] public string InvoiceType { get; set; } /// /// 销售方地址 /// [XmlElement("payee_address")] public string PayeeAddress { get; set; } /// /// 销售方开户银行账号 /// [XmlElement("payee_bank_account")] public string PayeeBankAccount { get; set; } /// /// 销售方开户银行名称 /// [XmlElement("payee_bank_name")] public string PayeeBankName { get; set; } /// /// 销售方电话 /// [XmlElement("payee_phone")] public string PayeePhone { get; set; } /// /// 销售方名称 /// [XmlElement("payee_register_name")] public string PayeeRegisterName { get; set; } /// /// 销售方税号 /// [XmlElement("payee_tax_no")] public string PayeeTaxNo { get; set; } /// /// 购买方地址 /// [XmlElement("payer_address")] public string PayerAddress { get; set; } /// /// 购买方开户银行账号 /// [XmlElement("payer_bank_account")] public string PayerBankAccount { get; set; } /// /// 购买方开户银行名称 /// [XmlElement("payer_bank_name")] public string PayerBankName { get; set; } /// /// 购买方名称 /// [XmlElement("payer_name")] public string PayerName { get; set; } /// /// 购买方电话 /// [XmlElement("payer_phone")] public string PayerPhone { get; set; } /// /// 购买方税号 /// [XmlElement("payer_tax_no")] public string PayerTaxNo { get; set; } /// /// 合计税额(废弃) /// [XmlElement("sum_tax_amount")] public string SumTaxAmount { get; set; } /// /// 票种 PLAIN:增值税电子普通发票 SPECIAL:增值税专用发票 PLAIN_INVOICE:增值税普通发票 PAPER_INVOICE:增值税普通发票(卷式) SALSE_INVOICE:机动车销售统一发票 /// [XmlElement("tax_type")] public string TaxType { get; set; } } }