Abp模块
abp
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

55 lines
1.4 KiB

using System;
using System.Collections.Generic;
using Volo.Abp.Application.Dtos;
namespace Sanhe.Abp.Auditing.AuditLogs
{
public class AuditLogDto : ExtensibleEntityDto<Guid>
{
public string ApplicationName { get; set; }
public Guid? UserId { get; set; }
public string UserName { get; set; }
public Guid? TenantId { get; set; }
public string TenantName { get; set; }
public Guid? ImpersonatorUserId { get; set; }
public Guid? ImpersonatorTenantId { get; set; }
public DateTime ExecutionTime { get; set; }
public int ExecutionDuration { get; set; }
public string ClientIpAddress { get; set; }
public string ClientName { get; set; }
public string ClientId { get; set; }
public string CorrelationId { get; set; }
public string BrowserInfo { get; set; }
public string HttpMethod { get; set; }
public string Url { get; set; }
public string Exceptions { get; set; }
public string Comments { get; set; }
public int? HttpStatusCode { get; set; }
public List<EntityChangeDto> EntityChanges { get; set; }
public List<AuditLogActionDto> Actions { get; set; }
public AuditLogDto()
{
EntityChanges = new List<EntityChangeDto>();
Actions = new List<AuditLogActionDto>();
}
}
}