初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

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