using YLErp.Models; namespace YLErp.Model { /// /// 波动率报价表 /// public class VolatilityQuotation { /// /// 品种 /// public string CommodityCode { get; set; } public string UnderlyingType { get; set; } public string UnderlyingMainCode { get; set; } public List BidAskMatureData { get; set; } public string MarketName { get; set; } } public class ExpireGroup { public string Expire { get; set; } public List Sv { get; set; } } public class BidAskMatureData { public string Expire { get; set; } public double BidVol { get; set; } public double AskVol { get; set; } } public class UnderlyingMainContractViewModel { public List Records { get; set; } public bool EnableClientCalculation { get; set; } public bool EnableMobileQuotation { get; set; } public bool EnableMobileVolQuote { get; set; } } public class UnderlyingMainContractRecord { public bool NeedQuote { get; set; } public string UnderlyingType { get; set; } public List UnderlyingCodeList { get; set; } = new List(); public string UnderlyingCode { get; set; } public int? MinimumAmount { get; set; } public string MarketCode { get; set; } public int? StrikeInterval { get; set; } public int? OrderId { get; set; } } }