Blame view

Yi.Abp.Net8/module/audit-logging/Yi.Framework.AuditLogging.Domain.Shared/Consts/EntityChangeConsts.cs 359 Bytes
515fceeb   “wangming”   框架初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  namespace Yi.Framework.AuditLogging.Domain.Shared.Consts;
  
  public class EntityChangeConsts
  {
      /// <summary>
      /// Default value: 128
      /// </summary>
      public static int MaxEntityTypeFullNameLength { get; set; } = 128;
  
      /// <summary>
      /// Default value: 128
      /// </summary>
      public static int MaxEntityIdLength { get; set; } = 128;
  }