using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// PackageItemOpenInfo Data Structure. /// [Serializable] public class PackageItemOpenInfo : AopObject { /// /// 账单数据 /// [XmlElement("consume_output_info")] public ConsumeOutputInfo ConsumeOutputInfo { get; set; } /// /// 发票文件下载链接 /// [XmlElement("file_download_url")] public string FileDownloadUrl { get; set; } /// /// 文件类型,如pdf,ofd,jpg /// [XmlElement("file_type")] public string FileType { get; set; } /// /// 电子发票的数据 /// [XmlElement("invoice_output_info")] public InvoiceOutputInfo InvoiceOutputInfo { get; set; } /// /// 项目来源,如:ocr\einvoice\consume /// [XmlElement("item_source")] public string ItemSource { get; set; } /// /// 项目子类,如:出租车、火车、飞机等 /// [XmlElement("item_sub_type")] public string ItemSubType { get; set; } /// /// 项目大类,如:餐饮美食、酒店住宿、差旅出行等 /// [XmlElement("item_type")] public string ItemType { get; set; } /// /// 增值税发票、定额发票、卷式发票、过路费ocr的扫描数据 /// [XmlElement("ocr_normal_scan_info")] public OcrNormalScanInfo OcrNormalScanInfo { get; set; } /// /// 飞机票ocr的数据 /// [XmlElement("ocr_plane_scan_info")] public OcrPlaneScanInfo OcrPlaneScanInfo { get; set; } /// /// 出租车发票ocr的数据 /// [XmlElement("ocr_taxi_scan_info")] public OcrTaxiScanInfo OcrTaxiScanInfo { get; set; } /// /// 火车票ocr的数据 /// [XmlElement("ocr_train_scan_info")] public OcrTrainScanInfo OcrTrainScanInfo { get; set; } } }