Browse Source
Merge pull request #13968 from abpframework/liangshiwei/auditing
Change EntityPropertyChangeInfo members to static
pull/13970/head
maliming
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
framework/src/Volo.Abp.Auditing/Volo/Abp/Auditing/EntityPropertyChangeInfo.cs
|
|
|
@ -9,19 +9,19 @@ public class EntityPropertyChangeInfo |
|
|
|
/// Maximum length of <see cref="PropertyName"/> property.
|
|
|
|
/// Value: 96.
|
|
|
|
/// </summary>
|
|
|
|
public const int MaxPropertyNameLength = 96; |
|
|
|
public static int MaxPropertyNameLength = 96; |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Maximum length of <see cref="NewValue"/> and <see cref="OriginalValue"/> properties.
|
|
|
|
/// Value: 512.
|
|
|
|
/// </summary>
|
|
|
|
public const int MaxValueLength = 512; |
|
|
|
public static int MaxValueLength = 512; |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Maximum length of <see cref="PropertyTypeFullName"/> property.
|
|
|
|
/// Value: 512.
|
|
|
|
/// </summary>
|
|
|
|
public const int MaxPropertyTypeFullNameLength = 192; |
|
|
|
public static int MaxPropertyTypeFullNameLength = 192; |
|
|
|
|
|
|
|
public virtual string NewValue { get; set; } |
|
|
|
|
|
|
|
|