using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.DBModels
{
///
/// 平仓/互换 浮动端平仓盈亏计算
///
public class SwapPayOffCalcRequest
{
///
/// 标的结算价
///
public decimal FinalPrice { get; set; }
///
/// 平仓/互换日期
///
public DateTime ValueDate { get; set; }
///
/// 平仓数量
///
public decimal CloseQty { get; set; }
///
/// 交易编码
///
public int SwapTradeId { get; set; }
}
}