Files
zszq-trs/Framework/YLErp.Core/Models/SwapTradeUnwindDetail.cs
T
2024-05-09 14:06:26 +08:00

80 lines
1.9 KiB
C#

namespace YLErp.Models
{
public class SwapTradeUnwindDetail
{
public int Id { get; set; }
public int TcId { get; set; }
public int ClientId { get; set; }
public int VarietyId { get; set; }
public string BoundSide { get; set; }
public string AssetBookName { get; set; }
public string TradeNumber { get; set; }
public string TradeFlowNumber { get; set; }
public DateTime? TradeDate { get; set; }
public string TradeType { get; set; }
public string ClientName { get; set; }
public double? SpotPrice { get; set; }
public string TcUnwindType { get; set; }
public DateTime? TcHappenDate { get; set; }
public DateTime? TcValueDate { get; set; }
public double? TcFinalPrice { get; set; }
public double? TcUnwindTradeAmount { get; set; }
public double? TcNotional { get; set; }
public double? TcPreNotional { get; set; }
public double? TcCurrencyRate { get; set; }
public double? OpenCommision { get; set; }
public double? CommissionSingleFee { get; set; }
public double? CommissionRate { get; set; }
public double? TcCommission { get; set; }
public double? FloatingWinLoss { get; set; }
public double? TcAmount { get; set; }
public string PaySide { get; set; }
public string BuySell { get; set; }
public double? TcStockEqvNotional { get; set; }
public double? TcRemainStockEqvNotional { get; set; }
public double? OpenCurrencyRate { get; set; }
public int DayCount { get; set; }
public string UnderlyingCode { get; set; }
public string QuoteCurrency { get; set; }
public string SettlementCurrency { get; set; }
public double? Size { get; set; }
public double? AnnualFee { get; set; }
}
}