29 lines
709 B
C#
29 lines
709 B
C#
namespace YLWebAPI.ApiModule.Models
|
|
{
|
|
/// <summary>
|
|
/// 单标的资产信息查询
|
|
/// </summary>
|
|
public class SingleUnderlyingRequest
|
|
{
|
|
public string UnderlyingCode { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 实时价格查询(获取标的资产实时价格)
|
|
/// </summary>
|
|
public class UnderlyingPriceRequest
|
|
{
|
|
public IEnumerable<string> UnderlyingCodes { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 日终价格查询(获取标的资产历史日期结算价)
|
|
/// </summary>
|
|
public class UnderlyingEodPriceRequest
|
|
{
|
|
public DateTime ValueDate { get; set; }
|
|
|
|
public IEnumerable<string> UnderlyingCodes { get; set; }
|
|
}
|
|
}
|