从山证v2.3.0拷贝
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
using YLErp.Models;
|
||||
|
||||
namespace YLErp.Modules.VolatilityModule.ApiModule
|
||||
{
|
||||
/// <summary>
|
||||
/// 曲面波动率提供
|
||||
/// </summary>
|
||||
public class UnderlyingVolQueryApiResultV2
|
||||
{
|
||||
/// <summary>
|
||||
/// 波动率类型
|
||||
/// </summary>
|
||||
public string VolType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 波动率报价日期
|
||||
/// </summary>
|
||||
public string QuotationDate
|
||||
{
|
||||
get => InnerQuotationDate.ToString("yyyy-MM-dd");
|
||||
set { }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 标的代码
|
||||
/// </summary>
|
||||
public string UnderlyingCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public List<SingleVol> VolTable { get; set; }
|
||||
|
||||
//--------内部类----------------
|
||||
|
||||
internal string VolTableJson { get; set; }
|
||||
|
||||
internal DateTime InnerQuotationDate { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user