Files
zszq-trs/YLErpDAL/Modules/ScenarioModule/Models/TradeScenarioSearchModel.cs
T
2024-05-09 14:06:26 +08:00

41 lines
1.0 KiB
C#

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