using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// OcrTaxiScanInfo Data Structure.
///
[Serializable]
public class OcrTaxiScanInfo : AopObject
{
///
/// 下车时间
///
[XmlElement("get_off_time")]
public string GetOffTime { get; set; }
///
/// 上车时间
///
[XmlElement("get_on_time")]
public string GetOnTime { get; set; }
///
/// 发票代码
///
[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("passenger")]
public string Passenger { get; set; }
///
/// 金额
///
[XmlElement("price")]
public string Price { get; set; }
///
/// 乘车距离
///
[XmlElement("travel_dist")]
public string TravelDist { get; set; }
}
}