Files
2023-05-31 10:19:05 +08:00

17 lines
329 B
C#

using JNPF.Common.Filter;
namespace JNPF.Systems.Entitys.Dto.System.PrintLog;
public class PrintLogQuery : PageInputBase
{
/// <summary>
/// 开始时间.
/// </summary>
public long? startTime { get; set; }
/// <summary>
/// 结束时间.
/// </summary>
public long? endTime { get; set; }
}