28 changed files with 459 additions and 397 deletions
Binary file not shown.
Binary file not shown.
@ -0,0 +1,14 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using Volo.Abp.Domain.Entities.Auditing; |
||||
|
public class AbpAuditLogActions : AuditedAggregateRoot<Guid> |
||||
|
{ |
||||
|
public Guid AuditLogId { get; set; } |
||||
|
public string ServiceName { get; set; } |
||||
|
public string MethodName { get; set; } |
||||
|
public string Parameters { get; set; } |
||||
|
public DateTime ExecutionTime { get; set; } |
||||
|
public Int32 ExecutionDuration { get; set; } |
||||
|
public string ExtraProperties { get; set; } |
||||
|
} |
||||
|
|
@ -0,0 +1,26 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using Volo.Abp.Domain.Entities.Auditing; |
||||
|
public class AbpAuditLogs : AuditedAggregateRoot<Guid> |
||||
|
{ |
||||
|
public string ApplicationName { get; set; } |
||||
|
public Guid UserId { get; set; } |
||||
|
public string UserName { get; set; } |
||||
|
public string TenantName { get; set; } |
||||
|
public Guid ImpersonatorUserId { get; set; } |
||||
|
public Guid ImpersonatorTenantId { get; set; } |
||||
|
public DateTime ExecutionTime { get; set; } |
||||
|
public Int32 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 Int32 HttpStatusCode { get; set; } |
||||
|
public string ExtraProperties { get; set; } |
||||
|
} |
||||
|
|
@ -0,0 +1,11 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using Volo.Abp.Domain.Entities.Auditing; |
||||
|
public class AbpSettings : AuditedAggregateRoot<Guid> |
||||
|
{ |
||||
|
public string Name { get; set; } |
||||
|
public string Value { get; set; } |
||||
|
public string ProviderName { get; set; } |
||||
|
public string ProviderKey { get; set; } |
||||
|
} |
||||
|
|
@ -0,0 +1,9 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using Volo.Abp.Domain.Entities.Auditing; |
||||
|
public class __EFMigrationsHistory : AuditedAggregateRoot<Guid> |
||||
|
{ |
||||
|
public string MigrationId { get; set; } |
||||
|
public string ProductVersion { get; set; } |
||||
|
} |
||||
|
|
Loading…
Reference in new issue