NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntfortuneQuotationResearch...

64 lines
1.8 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AntfortuneQuotationResearchdataQueryModel Data Structure.
/// </summary>
[Serializable]
public class AntfortuneQuotationResearchdataQueryModel : AopObject
{
/// <summary>
/// 需要获取数据的结束时间
/// </summary>
[XmlElement("end_date")]
public string EndDate { get; set; }
/// <summary>
/// 预留的扩展字段json格式。
/// </summary>
[XmlElement("ext")]
public string Ext { get; set; }
/// <summary>
/// 字段名称需要访问的表中哪些字段。比如open代表开盘价
/// </summary>
[XmlArray("fields")]
[XmlArrayItem("string")]
public List<string> Fields { get; set; }
/// <summary>
/// 选择性参数,用于附带一些查询条件。
/// </summary>
[XmlElement("opt")]
public string Opt { get; set; }
/// <summary>
/// 请求唯一id用于排查问题
/// </summary>
[XmlElement("request_id")]
public string RequestId { get; set; }
/// <summary>
/// 需要获取数据的开始时间
/// </summary>
[XmlElement("start_date")]
public string StartDate { get; set; }
/// <summary>
/// 对象唯一标识代码比如股票就是600000.SH基金就是003003
/// </summary>
[XmlArray("symbols")]
[XmlArrayItem("string")]
public List<string> Symbols { get; set; }
/// <summary>
/// 表明需要访问的金融信息数据哪张表
/// </summary>
[XmlElement("table")]
public string Table { get; set; }
}
}