using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// BillInferenceResult Data Structure.
///
[Serializable]
public class BillInferenceResult : AopObject
{
///
/// 角度
///
[XmlElement("angle")]
public long Angle { get; set; }
///
/// 分数
///
[XmlElement("bill_score")]
public long BillScore { get; set; }
///
/// 算法版本
///
[XmlElement("bill_version")]
public string BillVersion { get; set; }
///
/// 发票金额
///
[XmlArray("capital_sum")]
[XmlArrayItem("string")]
public List CapitalSum { get; set; }
///
/// 发票时间
///
[XmlArray("date")]
[XmlArrayItem("string")]
public List Date { get; set; }
///
/// 发票报销人
///
[XmlArray("name")]
[XmlArrayItem("string")]
public List Name { get; set; }
///
/// 发票号
///
[XmlArray("no")]
[XmlArrayItem("string")]
public List No { get; set; }
///
/// 分辨率
///
[XmlArray("rotate_shape")]
[XmlArrayItem("string")]
public List RotateShape { get; set; }
///
/// 发票标题
///
[XmlArray("title")]
[XmlArrayItem("string")]
public List Title { get; set; }
}
}