using BaseOUDAL; namespace YLErp.Modules.ScenarioModule { /// /// 情景分析交易筛选Model /// public class TradeScenarioSearchModel : BaseSearchReq { public bool IsSelAll { get; set; } /// /// 持仓日期 /// public DateTime? PositionDate { get; set; } public List AssetIds { get; set; } public IEnumerable AssetGroupIds { get; set; } public List ClientIds { get; set; } public IEnumerable UnderlyingIds { get; set; } public IEnumerable VarietyIds { get; set; } public IEnumerable TradeTypes { get; set; } public List EodTradeIds { get; set; } public List OtcTradeIds { get; set; } public List ExchangeTradeIds { get; set; } public List UserAssets { get; set; } public List UserClients { get; set; } public List CurUserTradeIds { get; set; } } }