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
parent
commit
edf0444a75
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      framework/src/Volo.Abp.Auditing/Volo/Abp/Auditing/EntityPropertyChangeInfo.cs

6
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; }

Loading…
Cancel
Save