NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayFinanceFundFundnetval...

43 lines
1.0 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>
/// AlipayFinanceFundFundnetvaluesBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFinanceFundFundnetvaluesBatchqueryModel : AopObject
{
/// <summary>
/// 结束日期YYYYMMDD
/// </summary>
[XmlElement("end_date")]
public string EndDate { get; set; }
/// <summary>
/// 基金代码
/// </summary>
[XmlElement("fund_code")]
public string FundCode { get; set; }
/// <summary>
/// 分页数,从 1 开始
/// </summary>
[XmlElement("page_num")]
public string PageNum { get; set; }
/// <summary>
/// 每页条数
/// </summary>
[XmlElement("page_size")]
public string PageSize { get; set; }
/// <summary>
/// 开始日期YYYYMMDD
/// </summary>
[XmlElement("start_date")]
public string StartDate { get; set; }
}
}