using YLErp.Enums; namespace YLErp.Modules.CalculationLogModule { public class CalculationLog { /// /// 日志编号 /// public string LogNum { get; set; } /// /// 交易编号 /// public string TradeNumber { get; set; } /// /// 数量 /// public double Notional { get; set; } /// /// 行权方式 /// public string Exercise { get; set; } /// /// 看涨看跌 /// public string OptionType { get; set; } /// /// 交易日期 /// public string TradeDate { get; set; } /// /// 到期日 /// public string MaturityDate { get; set; } /// /// 期初价 /// public string InitialSpotPrice { get; set; } /// /// 执行价格 /// public string Strike { get; set; } /// /// 日志场景 /// public CalcScenarioEnum Scenario { get; set; } /// /// 日志创建时间 /// public DateTime CreateTime { get; set; } /// /// 日志主实体内容 /// public object LogObject { get; set; } /// /// 反算的时候目标PV(C++ 引擎用到) /// public double? targetPv { get; set; } /// /// 是否为NAN(C++ 引擎用到) /// public bool? isNan { get; set; } } }