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.
50 lines
1.8 KiB
C#
50 lines
1.8 KiB
C#
using NPin.Framework.AuditLogging.Domain.Shared.Consts;
|
|
using SqlSugar;
|
|
using Volo.Abp.Auditing;
|
|
using Volo.Abp.Domain.Entities;
|
|
using Volo.Abp.Guids;
|
|
using Volo.Abp.MultiTenancy;
|
|
|
|
namespace NPin.Framework.AuditLogging.Domain.Entities;
|
|
|
|
[SugarTable("SysEntityPropertyChange")]
|
|
[SugarIndex($"index_{nameof(EntityChangeId)}", nameof(EntityChangeId), OrderByType.Asc)]
|
|
public class EntityPropertyChangeEntity : Entity<Guid>, IMultiTenant
|
|
{
|
|
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
|
|
public override Guid Id { get; protected set; }
|
|
|
|
public virtual Guid? TenantId { get; protected set; }
|
|
public virtual Guid? EntityChangeId { get; protected set; }
|
|
|
|
public virtual string? NewValue { get; protected set; }
|
|
|
|
public virtual string? OriginalValue { get; protected set; }
|
|
|
|
public virtual string? PropertyName { get; protected set; }
|
|
|
|
public virtual string? PropertyTypeFullName { get; protected set; }
|
|
|
|
public EntityPropertyChangeEntity()
|
|
{
|
|
}
|
|
|
|
|
|
public EntityPropertyChangeEntity(
|
|
IGuidGenerator guidGenerator,
|
|
Guid entityChangeId,
|
|
EntityPropertyChangeInfo entityChangeInfo,
|
|
Guid? tenantId = null)
|
|
{
|
|
Id = guidGenerator.Create();
|
|
TenantId = tenantId;
|
|
EntityChangeId = entityChangeId;
|
|
NewValue = entityChangeInfo.NewValue.Truncate(EntityPropertyChangeConsts.MaxNewValueLength);
|
|
OriginalValue = entityChangeInfo.OriginalValue.Truncate(EntityPropertyChangeConsts.MaxOriginalValueLength);
|
|
PropertyName =
|
|
entityChangeInfo.PropertyName.TruncateFromBeginning(EntityPropertyChangeConsts.MaxPropertyNameLength);
|
|
PropertyTypeFullName =
|
|
entityChangeInfo.PropertyTypeFullName.TruncateFromBeginning(EntityPropertyChangeConsts
|
|
.MaxPropertyTypeFullNameLength);
|
|
}
|
|
} |