using System; using Volo.Abp.Application.Dtos; namespace Sanhe.Abp.Auditing.SecurityLogs { public class SecurityLogDto : ExtensibleEntityDto { /// /// 应用名称 /// public string ApplicationName { get; set; } /// /// 标识 /// public string Identity { get; set; } /// /// 操作 /// public string Action { get; set; } /// /// 用户Id /// public Guid? UserId { get; set; } /// /// 用户名称 /// public string UserName { get; set; } /// /// 租户名称 /// public string TenantName { get; set; } /// /// 客户端Id /// public string ClientId { get; set; } /// /// 链路标识 /// public string CorrelationId { get; set; } /// /// 客户端地址 /// public string ClientIpAddress { get; set; } /// /// 浏览器信息 /// public string BrowserInfo { get; set; } /// /// 创建时间 /// public DateTime CreationTime { get; set; } } }