从山证v2.3.0拷贝

This commit is contained in:
吴方海
2024-05-09 14:06:26 +08:00
parent 566ff33259
commit f9d8a256a6
4471 changed files with 1203456 additions and 9 deletions
@@ -0,0 +1,41 @@
using System.Data;
using YLErp.DBModels.Enums;
namespace YLErp.Modules.ClientModule
{
/// <summary>
/// 客户持仓查询模型
/// </summary>
public class ClientPositionQueryModel : PagedQueryModel
{
/// <summary>
/// 数据版本(V1|V2)
/// </summary>
public string DataVersion { get; set; }
/// <summary>
/// 持仓查询日期
/// </summary>
public DateTime? ValueDate { get; set; }
/// <summary>
/// 客户ID(为0表示所有客户)
/// </summary>
public int ClientId { get; set; }
/// <summary>
/// 客户编号(ClientId为0时生效)
/// </summary>
public string ClientNumber { get; set; }
/// <summary>
/// 交易状态过滤
/// </summary>
public IEnumerable<EnumTradeStatus> TradeStatus { get; set; }
/// <summary>
/// 所有状态都包括
/// </summary>
internal bool AllStatusIncluded { get; set; }
}
}