namespace Sanhe.Abp.Auditing.Logging { public class LogFieldDto { /// /// Id /// public string Id { get; set; } /// /// 机器名称 /// public string MachineName { get; set; } /// /// 应用环境 /// public string Environment { get; set; } /// /// 应用信息 /// public string Application { get; set; } /// /// 上下文 /// public string Context { get; set; } /// /// 方法标识 /// public string ActionId { get; set; } /// /// 方法名称 /// public string ActionName { get; set; } /// /// 请求标识 /// public string RequestId { get; set; } /// /// 请求路径 /// public string RequestPath { get; set; } /// /// 连接标识 /// public string ConnectionId { get; set; } /// /// 链路标识 /// public string CorrelationId { get; set; } /// /// 客户端标识 /// public string ClientId { get; set; } /// /// 用户标识 /// public string UserId { get; set; } /// /// 进程标识 /// public int ProcessId { get; set; } /// /// 线程标识 /// public int ThreadId { get; set; } } }