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