Files
zszq-trs/Framework/YLErp.Core/Models/SwapEndConfirmModel.cs
T

56 lines
1.7 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.Models
{
public class SwapEndConfirmModel
{
public List<ExcelReportModel> table { get; set; }
}
public class ExcelReportModel
{
public string TradeNumber { get; set; }
public string ClientName { get; set; }
public string UnderlyingCode { get; set; }
public string StartDate { get; set; }
public string EventDate { get; set; }
public string PayDate { get; set; }
public string ClosePrice { get; set; }
public string InterestRate { get; set; }
public string PosiNotionalValue { get; set; }
public string PosiNetPrice { get; set; }
public string Fee { get; set; }
public string RateDays { get; set; }
public string MarginAmout { get; set; }
public string MarginRebateRate { get; set; }
public string InterestAmount { get; set; }
public string FloatRate { get; set; }
public string PosiPnl { get; set; }
public string MarkClosePnl { get; set; }
public string NetSettleAmout { get; set; }
public string MarginInterestAmount { get; set; }
/// <summary>
/// 分红
/// </summary>
public string DividendIn { get; set; }
public string Quantity { get; set; }
/// <summary>
/// 期末标的结算收益率(EQD-6953)。普通债券类收益互换平仓收益率,展示态百分数,
/// 固定 4 位小数不去零("0.0000");非债券/历史无值时为空串。
/// </summary>
public string ExitYtm { get; set; }
}
}