NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntfortuneQuotationPlateInd...

25 lines
801 B
C#
Raw 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>
/// AntfortuneQuotationPlateIndexQueryModel Data Structure.
/// </summary>
[Serializable]
public class AntfortuneQuotationPlateIndexQueryModel : AopObject
{
/// <summary>
/// 如果类型为getIds则为空即可。 如果类型为getInfo,则填入板块id。板块的Id,返回板块的详细信息。包括板块的名称,所属股票的代码和名称。
/// </summary>
[XmlElement("plate_id")]
public string PlateId { get; set; }
/// <summary>
/// getIds 用于获取板块数据 getInfo 用于获取具体板块的数据
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}