NewGaoKaoApi/PaymentSDK/AliPay/Domain/NetValueVO.cs

37 lines
960 B
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>
/// NetValueVO Data Structure.
/// </summary>
[Serializable]
public class NetValueVO : AopObject
{
/// <summary>
/// 基金单位净值含4位小数
/// </summary>
[XmlElement("net_value")]
public string NetValue { get; set; }
/// <summary>
/// 基金净值日期
/// </summary>
[XmlElement("net_value_date")]
public string NetValueDate { get; set; }
/// <summary>
/// 七日年化收益率含5位小数可以为负
/// </summary>
[XmlElement("profit_seven_days")]
public string ProfitSevenDays { get; set; }
/// <summary>
/// 万份收益含5位小数可以为负
/// </summary>
[XmlElement("profit_ten_thousand")]
public string ProfitTenThousand { get; set; }
}
}