namespace YLErp.Model { /// /// 包含持仓的场外期权和合并的场内期权 /// public class TradePositionMerge { public string id { get; set; } public string EncryptId { get; set; } public string TradeEncryptId { get; set; } public string TradeNumber { get; set; } public int? ClientId { get; set; } public string ClientName { get; set; } public double? TradeAmount { get; set; } public DateTime? TradeDate { get; set; } public string BuySell { get; set; } public int? UnderlyingId { get; set; } public string UnderlyingCode { get; set; } public int? VarietyId { get; set; } public string UnderlyingAssetClass { get; set; } public string TradeType { get; set; } public string OptionType { get; set; } public DateTime? ExerciseDate { get; set; } public double? Strike { get; set; } public string IsMoneynessOption { get; set; } public int? BookId { get; set; } public string AssetBookName { get; set; } public IEnumerable SubTrades { get; set; } public int CountRatio { get; set; } } }