18 lines
395 B
C#
18 lines
395 B
C#
using JNPF.Common.Filter;
|
|
|
|
namespace JNPF.Systems.Entitys.Dto.System.DataInterfaceLog
|
|
{
|
|
public class DataInterfaceLogListQuery : PageInputBase
|
|
{
|
|
/// <summary>
|
|
/// 开始时间.
|
|
/// </summary>
|
|
public long? startTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束时间.
|
|
/// </summary>
|
|
public long? endTime { get; set; }
|
|
}
|
|
}
|