using System; using Volo.Abp.Application.Dtos; namespace Sanhe.Abp.Auditing.SecurityLogs { public class SecurityLogGetByPagedDto : PagedAndSortedResultRequestDto { /// /// 开始时间 /// public DateTime? StartTime { get; set; } /// /// 结束时间 /// public DateTime? EndTime { get; set; } /// /// 应用名称 /// public string ApplicationName { get; set; } /// /// 标识 /// public string Identity { get; set; } /// /// 方法名称 /// public string ActionName { get; set; } /// /// 用户Id /// public Guid? UserId { get; set; } /// /// 用户名称 /// public string UserName { get; set; } /// /// 客户端Id /// public string ClientId { get; set; } /// /// 链路标识 /// public string CorrelationId { get; set; } } }