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