56 lines
1.2 KiB
C#
56 lines
1.2 KiB
C#
namespace YLErp.Model
|
|
{
|
|
/// <summary>
|
|
/// 包含持仓的场外期权和合并的场内期权
|
|
/// </summary>
|
|
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<trade> SubTrades
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public int CountRatio { get; set; }
|
|
}
|
|
}
|