using Microsoft.Extensions.Logging;
using System;
using Volo.Abp.Application.Dtos;
namespace Sanhe.Abp.Auditing.Logging
{
public class LogGetByPagedDto : PagedAndSortedResultRequestDto
{
///
/// 开始时间
///
public DateTime? StartTime { get; set; }
///
/// 结束时间
///
public DateTime? EndTime { get; set; }
///
/// 日志等级
///
public LogLevel? Level { get; set; }
///
/// 机器名称
///
public string MachineName { get; set; }
///
/// 应用环境
///
public string Environment { get; set; }
///
/// 应用信息
///
public string Application { get; set; }
///
/// 上下文
///
public string Context { get; set; }
///
/// 请求标识
///
public string RequestId { get; set; }
///
/// 请求路径
///
public string RequestPath { get; set; }
///
/// 链路标识
///
public string CorrelationId { get; set; }
///
/// 进程标识
///
public int? ProcessId { get; set; }
///
/// 线程标识
///
public int? ThreadId { get; set; }
///
/// 包含异常
///
public bool? HasException { get; set; }
}
}