2023-04-28 12:21:24 +08:00

29 lines
896 B
C#

using Foresight.Fleet.Services.AssetHealth;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IronIntel.Contractor.Maintenance
{
public class AlertQueryParams
{
public long AssetID { get; set; }
public string SearchText { get; set; }
public string[] AlertStatus { get; set; }
public string[] AssetGroups { get; set; }
public string[] AlertTypes { get; set; }
public string[] JobSites { get; set; }
public string BeginDate { get; set; }
public string EndDate { get; set; }
public bool IncludeunCompleted { get; set; }
}
public class AutoAcknowledgeInfo : AutoAcknowledgeItem
{
public DateTime LocalUpdatedOn { get; set; }
public string LocalUpdatedOnStr { get { return LocalUpdatedOn.ToString(); } }
}
}