using System; namespace CncModels.Dto.CollectLog { /// /// 采集周期查询条件(分页) /// public class CollectCycleQuery : PagedQuery { public DateTime? StartDate { get; set; } public DateTime? EndDate { get; set; } public int? CollectAddressId { get; set; } public int? HasAnomaly { get; set; } } }