using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// OcrNormalScanInfo Data Structure.
///
[Serializable]
public class OcrNormalScanInfo : AopObject
{
///
/// 发票代码
///
[XmlElement("invoice_code")]
public string InvoiceCode { get; set; }
///
/// 开票时间
///
[XmlElement("invoice_date")]
public string InvoiceDate { get; set; }
///
/// 发票号码
///
[XmlElement("invoice_no")]
public string InvoiceNo { get; set; }
///
/// 金额
///
[XmlElement("price")]
public string Price { get; set; }
///
/// 明细事由
///
[XmlElement("remark")]
public string Remark { get; set; }
}
}