using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// FinanceInvoiceInfo Data Structure.
///
[Serializable]
public class FinanceInvoiceInfo : AopObject
{
///
/// 发票金额(不含税),以元为单位的,精确到小数点后2位
///
[XmlElement("amount")]
public string Amount { get; set; }
///
/// 发票金额(含税)
///
[XmlElement("amount_with_tax")]
public string AmountWithTax { get; set; }
///
/// UTC标准格式
///
[XmlElement("billing_date")]
public string BillingDate { get; set; }
///
/// 发票验证码后6位
///
[XmlElement("check_code")]
public string CheckCode { get; set; }
///
/// 发票对应合同编号
///
[XmlElement("contract_no")]
public string ContractNo { get; set; }
///
/// 发票影印件信息
///
[XmlElement("file")]
public FinanceFileInfo File { get; set; }
///
/// 发票代码
///
[XmlElement("invoice_code")]
public string InvoiceCode { get; set; }
///
/// 发票号码
///
[XmlElement("invoice_number")]
public string InvoiceNumber { get; set; }
///
/// 发票类型:专票SPECIAL,普票REGULAR,电票DIGITAL
///
[XmlElement("invoice_type")]
public string InvoiceType { get; set; }
}
}