namespace YLErp.Modules.TradeModule.ObservationModule { /// /// 交易观察检查结果 /// public class CheckObservationResult { public bool IsObservationDay { get; set; } public string UnderlyingCode { get; set; } public double? KOBarrier { get; set; } public string KnockInOutStatusObservation { get; set; } Dictionary _checkDic; /// /// 敲入敲出结果数据 /// public Dictionary CheckData { get => _checkDic ?? (_checkDic = new Dictionary(StringComparer.OrdinalIgnoreCase)); set => _checkDic = value; } } }