Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/src/Yi.Abp.SqlSugarCore/YiDbContext.cs 378 Bytes
59e51671   “wangming”   1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  using Microsoft.Extensions.Logging;
  using SqlSugar;
  using Volo.Abp.DependencyInjection;
  using Yi.Framework.Rbac.SqlSugarCore;
  using Yi.Framework.SqlSugarCore;
  
  namespace Yi.Abp.SqlSugarCore
  {
      public class YiDbContext : SqlSugarDbContext
      {
          public YiDbContext(IAbpLazyServiceProvider lazyServiceProvider) : base(lazyServiceProvider)
          {
          }
      }
  }