NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlmReportData.cs

49 lines
1.4 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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