using YLErp.Models; namespace YLErp.Modules.VolatilityModule.ApiModule { /// /// 曲面波动率提供 /// public class UnderlyingVolQueryApiResultV2 { /// /// 波动率类型 /// public string VolType { get; set; } /// /// 波动率报价日期 /// public string QuotationDate { get => InnerQuotationDate.ToString("yyyy-MM-dd"); set { } } /// /// 标的代码 /// public string UnderlyingCode { get; set; } /// /// /// public List VolTable { get; set; } //--------内部类---------------- internal string VolTableJson { get; set; } internal DateTime InnerQuotationDate { get; set; } } }