using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlmReportData Data Structure. /// [Serializable] public class AlmReportData : AopObject { /// /// 数据大类 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 期限类别 /// [XmlElement("date_type")] public string DateType { get; set; } /// /// 数据日期 /// [XmlElement("report_date")] public string ReportDate { get; set; } /// /// 报表名称 /// [XmlElement("report_name")] public string ReportName { get; set; } /// /// 报表数据,只支持整数(可为负),详细见下面描述。 金额单位:分,1万即传 1000000 百分比:乘以1万后的值。例如:50%,则提供 0.5*10000即:5000 偏离度bp:bp*1万提供。例如:30.5bp,提供值:305000 /// [XmlElement("report_value")] public long ReportValue { get; set; } /// /// 报表小类 /// [XmlElement("sub_biz_type")] public string SubBizType { get; set; } } }