You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
388 B
C#
16 lines
388 B
C#
using System;
|
|
|
|
namespace CncModels.Dto.CollectLog
|
|
{
|
|
/// <summary>
|
|
/// 采集周期查询条件(分页)
|
|
/// </summary>
|
|
public class CollectCycleQuery : PagedQuery
|
|
{
|
|
public DateTime? StartDate { get; set; }
|
|
public DateTime? EndDate { get; set; }
|
|
public int? CollectAddressId { get; set; }
|
|
public int? HasAnomaly { get; set; }
|
|
}
|
|
}
|