Files
zszq-trs/YLErpDAL/Model/ClientCashInCashOutHistoryReq.cs
T
2024-05-09 14:06:26 +08:00

18 lines
385 B
C#

using BaseOUDAL;
namespace YLErp.Model
{
public class ClientCashInCashOutHistoryReq : BaseSearchReq
{
public List<int> ClientIds { get; set; }
public DateTime ValueDateStart { get; set; }
public DateTime ValueDateEnd { get; set; }
public DateTime HappenDateStart { get; set; }
public DateTime HappenDateEnd { get; set; }
}
}