25 changed files with 81 additions and 21 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,13 @@ |
|||||
|
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 int? ExecutionDuration { get; set; } |
||||
|
public List<AbpAuditLogActionsDetail> Details { get; set; } = new();} |
||||
|
|
@ -0,0 +1,25 @@ |
|||||
|
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 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<AbpAuditLogsDetail> Details { get; set; } = new();} |
||||
|
|
@ -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; } |
||||
|
public List<AbpSettingsDetail> Details { get; set; } = new();} |
||||
|
|
@ -0,0 +1,12 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using Volo.Abp.Domain.Entities.Auditing; |
||||
|
public class AppExportCustomUserSettings : AuditedAggregateRoot<Guid> |
||||
|
{ |
||||
|
public Guid? ExportUserId { get; set; } |
||||
|
public string? ExportUserName { get; set; } |
||||
|
public string? ExportColumnName { get; set; } |
||||
|
public string? ExportTableName { get; set; } |
||||
|
public int? CustomUserSetting { get; set; } |
||||
|
public List<AppExportCustomUserSettingsDetail> Details { get; set; } = new();} |
||||
|
|
@ -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; } |
||||
|
public List<__EFMigrationsHistoryDetail> Details { get; set; } = new();} |
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue