You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
4.7 KiB
C#
111 lines
4.7 KiB
C#
using NPin.Framework.AuditLogging.Domain.Shared.Consts;
|
|
using SqlSugar;
|
|
using Volo.Abp.Auditing;
|
|
using Volo.Abp.Data;
|
|
using Volo.Abp.Domain.Entities;
|
|
using Volo.Abp.MultiTenancy;
|
|
|
|
namespace NPin.Framework.AuditLogging.Domain.Entities;
|
|
|
|
[DisableAuditing]
|
|
[SugarTable("NPinAuditLog", "审计日志")]
|
|
[SugarIndex($"index_{nameof(ExecutionTime)}", nameof(TenantId), OrderByType.Asc, nameof(ExecutionTime),
|
|
OrderByType.Asc)]
|
|
[SugarIndex($"index_{nameof(ExecutionTime)}_{nameof(UserId)}", nameof(TenantId), OrderByType.Asc, nameof(UserId),
|
|
OrderByType.Asc, nameof(ExecutionTime), OrderByType.Asc)]
|
|
public class AuditLogAggregateRoot : AggregateRoot<Guid>, IMultiTenant
|
|
{
|
|
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
|
|
public override Guid Id { get; protected set; }
|
|
|
|
public virtual string? ApplicationName { get; set; }
|
|
|
|
|
|
public virtual Guid? UserId { get; protected set; }
|
|
|
|
public virtual string? UserName { get; protected set; }
|
|
|
|
public virtual string? TenantName { get; protected set; }
|
|
|
|
public virtual Guid? ImpersonatorUserId { get; protected set; }
|
|
|
|
public virtual string? ImpersonatorUserName { get; protected set; }
|
|
|
|
public virtual Guid? ImpersonatorTenantId { get; protected set; }
|
|
|
|
public virtual string? ImpersonatorTenantName { get; protected set; }
|
|
|
|
public virtual DateTime? ExecutionTime { get; protected set; }
|
|
|
|
public virtual int? ExecutionDuration { get; protected set; }
|
|
|
|
public virtual string? ClientIpAddress { get; protected set; }
|
|
|
|
public virtual string? ClientName { get; protected set; }
|
|
|
|
public virtual string? ClientId { get; set; }
|
|
|
|
public virtual string? CorrelationId { get; set; }
|
|
|
|
public virtual string? BrowserInfo { get; protected set; }
|
|
|
|
public virtual string? HttpMethod { get; protected set; }
|
|
|
|
public virtual string? Url { get; protected set; }
|
|
|
|
public virtual string? Exceptions { get; protected set; }
|
|
|
|
public virtual string? Comments { get; protected set; }
|
|
|
|
public virtual int? HttpStatusCode { get; set; }
|
|
|
|
public virtual Guid? TenantId { get; protected set; }
|
|
|
|
// 导航属性
|
|
[Navigate(NavigateType.OneToMany, nameof(EntityChangeEntity.AuditLogId))]
|
|
public virtual List<EntityChangeEntity> EntityChanges { get; protected set; }
|
|
|
|
// 导航属性
|
|
[Navigate(NavigateType.OneToMany, nameof(AuditLogActionEntity.AuditLogId))]
|
|
public virtual List<AuditLogActionEntity> Actions { get; protected set; }
|
|
|
|
[SugarColumn(IsIgnore = true)] public override ExtraPropertyDictionary ExtraProperties { get; protected set; }
|
|
|
|
public AuditLogAggregateRoot()
|
|
{
|
|
}
|
|
|
|
public AuditLogAggregateRoot(Guid id, string? applicationName, Guid? userId, string? userName, string? tenantName,
|
|
Guid? impersonatorUserId, string? impersonatorUserName, Guid? impersonatorTenantId,
|
|
string? impersonatorTenantName, DateTime? executionTime, int? executionDuration, string? clientIpAddress,
|
|
string? clientName, string? clientId, string? correlationId, string? browserInfo, string? httpMethod,
|
|
string? url, string? exceptions, string? comments, int? httpStatusCode, Guid? tenantId,
|
|
List<EntityChangeEntity> entityChanges, List<AuditLogActionEntity> actions,
|
|
ExtraPropertyDictionary extraProperties) : base(id)
|
|
{
|
|
ApplicationName = applicationName.Truncate(AuditLogConsts.MaxApplicationNameLength);
|
|
UserId = userId;
|
|
UserName = userName.Truncate(AuditLogConsts.MaxUserNameLength);
|
|
TenantName = tenantName.Truncate(AuditLogConsts.MaxTenantNameLength);
|
|
ImpersonatorUserId = impersonatorUserId;
|
|
ImpersonatorUserName = impersonatorUserName.Truncate(AuditLogConsts.MaxUserNameLength);
|
|
ImpersonatorTenantId = impersonatorTenantId;
|
|
ImpersonatorTenantName = impersonatorTenantName.Truncate(AuditLogConsts.MaxTenantNameLength);
|
|
ExecutionTime = executionTime;
|
|
ExecutionDuration = executionDuration;
|
|
ClientIpAddress = clientIpAddress.Truncate(AuditLogConsts.MaxClientIpAddressLength);
|
|
ClientName = clientName.Truncate(AuditLogConsts.MaxClientNameLength);
|
|
ClientId = clientId.Truncate(AuditLogConsts.MaxClientIdLength);
|
|
CorrelationId = correlationId.Truncate(AuditLogConsts.MaxCorrelationIdLength);
|
|
BrowserInfo = browserInfo.Truncate(AuditLogConsts.MaxBrowserInfoLength);
|
|
HttpMethod = httpMethod.Truncate(AuditLogConsts.MaxHttpMethodLength);
|
|
Url = url.Truncate(AuditLogConsts.MaxUrlLength);
|
|
Exceptions = exceptions;
|
|
Comments = comments.Truncate(AuditLogConsts.MaxCommentsLength);
|
|
HttpStatusCode = httpStatusCode;
|
|
TenantId = tenantId;
|
|
EntityChanges = entityChanges;
|
|
Actions = actions;
|
|
ExtraProperties = extraProperties;
|
|
}
|
|
} |