diff --git a/framework/src/Volo.Abp.Auditing/Volo/Abp/Auditing/EntityPropertyChangeInfo.cs b/framework/src/Volo.Abp.Auditing/Volo/Abp/Auditing/EntityPropertyChangeInfo.cs
index e25369d7b2..df7a6e88ec 100644
--- a/framework/src/Volo.Abp.Auditing/Volo/Abp/Auditing/EntityPropertyChangeInfo.cs
+++ b/framework/src/Volo.Abp.Auditing/Volo/Abp/Auditing/EntityPropertyChangeInfo.cs
@@ -21,7 +21,7 @@ public class EntityPropertyChangeInfo
/// Maximum length of property.
/// Value: 512.
///
- public static int MaxPropertyTypeFullNameLength = 192;
+ public static int MaxPropertyTypeFullNameLength = 512;
public virtual string? NewValue { get; set; }
diff --git a/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain.Shared/Volo/Abp/AuditLogging/EntityChangeConsts.cs b/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain.Shared/Volo/Abp/AuditLogging/EntityChangeConsts.cs
index 9a01c44454..adb7d2334f 100644
--- a/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain.Shared/Volo/Abp/AuditLogging/EntityChangeConsts.cs
+++ b/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain.Shared/Volo/Abp/AuditLogging/EntityChangeConsts.cs
@@ -3,9 +3,9 @@
public class EntityChangeConsts
{
///
- /// Default value: 128
+ /// Default value: 512
///
- public static int MaxEntityTypeFullNameLength { get; set; } = 128;
+ public static int MaxEntityTypeFullNameLength { get; set; } = 512;
///
/// Default value: 128
diff --git a/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain.Shared/Volo/Abp/AuditLogging/EntityPropertyChangeConsts.cs b/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain.Shared/Volo/Abp/AuditLogging/EntityPropertyChangeConsts.cs
index 86f1b0588a..60fe5ce7df 100644
--- a/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain.Shared/Volo/Abp/AuditLogging/EntityPropertyChangeConsts.cs
+++ b/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain.Shared/Volo/Abp/AuditLogging/EntityPropertyChangeConsts.cs
@@ -18,7 +18,7 @@ public class EntityPropertyChangeConsts
public static int MaxPropertyNameLength { get; set; } = 128;
///
- /// Default value: 64
+ /// Default value: 512
///
- public static int MaxPropertyTypeFullNameLength { get; set; } = 64;
+ public static int MaxPropertyTypeFullNameLength { get; set; } = 512;
}