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