mirror of https://github.com/abpframework/abp.git
3 changed files with 32 additions and 6 deletions
@ -0,0 +1,9 @@ |
|||
namespace Volo.Abp.AuditLogging |
|||
{ |
|||
public class EntityChangeConsts |
|||
{ |
|||
public const int MaxEntityTypeFullNameLength = 128; |
|||
|
|||
public const int MaxEntityIdLength = 128; |
|||
} |
|||
} |
|||
@ -0,0 +1,17 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Volo.Abp.AuditLogging |
|||
{ |
|||
public class EntityPropertyChangeConsts |
|||
{ |
|||
public const int MaxNewValueLength = 512; |
|||
|
|||
public const int MaxOriginalValueLength = 512; |
|||
|
|||
public const int MaxPropertyNameLength = 128; |
|||
|
|||
public const int MaxPropertyTypeFullNameLength = 64; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue