namespace YLErp.Model { public class TradeCashImportReq { public string TradeNumber { get; set; } public string UnwindType { get; set; } /// /// 平仓数量 /// public double? UnwindTradeAmount { get; set; } /// /// 平仓日期 /// public DateTime ValueDate { get; set; } /// /// 标的价格 /// public double? FinalPrice { get; set; } /// /// 平仓费用 /// public double? UnwindPriceCheck { get; set; } /// /// 平仓总费用 /// public double? UnwindFee { get; set; } public double UnwindForwardValue { get; set; } public double UnwindRatio { get; set; } } }