GetAlarmLogsQuery.cs
685 Bytes
namespace Rcs.Application.MessageBus.Commands;
/// <summary>
/// 分页查询报警日志
/// </summary>
public class GetAlarmLogsQuery : PaginationParameters
{
public string? Keyword { get; set; }
public string? Severity { get; set; }
public string? Status { get; set; }
public string? Source { get; set; }
public string? AlarmCode { get; set; }
public string? AlarmType { get; set; }
public string? Level { get; set; }
public string? SourceType { get; set; }
public string? SourceCode { get; set; }
public bool? IsAcknowledged { get; set; }
public DateTime? StartTime { get; set; }
public DateTime? EndTime { get; set; }
}