using YLErp.Modules.CalculationModule; namespace YLErp.Modules.PricingModule { /// /// 期权权利金计算结果(属性保持大小写用于json序列化) /// public class CalcOptionPriceResult { public string CalcId { get; set; } /// /// PV计算结果 /// public TradeValueResult calcResult { get; set; } /// /// 初始预付金 /// public double initialMargin { get; set; } /// /// 标的合约乘数 /// public double contractSize { get; set; } /// /// 份额数量乘积因子 /// public double countRatio { get; set; } /// /// 东证专用 /// public double Day1Pnl { get; set; } /// /// 东证需要计算出实时的TTMDays更新页面 /// public double TTMDays { get; set; } /// /// 组合交易是否需要轧差 /// public bool hasInitialMargin { get; set; } public double? TradePrice { get; internal set; } public double? AccurateTradePrice { get; internal set; } public string BuySell { get; internal set; } } }