mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-14 05:26:38 +08:00
feat: 搭建审计日志模块
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using Volo.Abp.AuditLogging;
|
||||
using Volo.Abp.Modularity;
|
||||
using Yi.Framework.SqlSugarCore;
|
||||
|
||||
namespace Yi.AuditLogging.SqlSugarCore
|
||||
{
|
||||
[DependsOn(typeof(AbpAuditLoggingDomainModule))]
|
||||
[DependsOn(typeof(YiFrameworkSqlSugarCoreModule))]
|
||||
public class YiAuditLoggingSqlSugarCoreModule:AbpModule
|
||||
{
|
||||
public override void ConfigureServices(ServiceConfigurationContext context)
|
||||
{
|
||||
context.Services.AddYiDbContext<YiAuditLoggingDbContext>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user