using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.Modules.TradeMsgOutputModule.Dto
{
public class TradeDicSimpleDto
{
public string TradeNumber { get; set; }
public int AssetId { get; set; }
public string TradeType { get; set; }
public DateTime? TradeDate { get; set; }
///
/// 交易到期日
///
public DateTime? ExerciseDate { get; set; }
///
/// 权利金应付时间
///
public DateTime? PremiumPayDate { get; set; }
public string UnderlyingCode { get; set; }
///
/// 期初名义本金
///
public double? OriginalStockEqvNotional { get; set; }
///
/// 名义本金
///
public double StockEqvNotional { get; set; }
///
/// 成交份额
///
public double OriginalNotional { get; set; }
}
}