using DapperORMCore.Model.CoreModel; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace NXWMS.Model.AppModels.Condition.Report { /// /// 预警报告查询 /// public class EarlyWarningReportCondition : PageQueryConditionInfo { /// /// 预警参数 /// public string WarningParam { get; set; } /// /// 预警描述 /// public string WarningDescribe { get; set; } /// /// 发送标识 /// public int? SendFlag { get; set; } /// /// 预警发送开始时间 /// public DateTime? WarningBeginTime { get; set; } /// /// 预警发送结束时间 /// public DateTime? WarningEndTime { get; set; } } }