using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YLErp.Modules.MarketRiskMoudule.Dto { public class ExchangeTradeQueryDto { /// /// 标的或场内期权到期日 /// public DateTime? MaturityDate { get; set; } /// /// 簿记账户 /// public int AssetBookId { get; set; } /// /// 交易类型 /// public string TradeType { get; set; } /// /// 买卖方向 /// public string TradeSide { get; set; } /// /// 标的代码 /// public string UnderlyingCode { get; set; } /// /// 期权代码 /// public string OptionCode { get; set; } } }