feat: 搭建审计日志模块

This commit is contained in:
陈淳
2023-12-27 18:59:26 +08:00
parent d86ee7a028
commit 8ef2ff43b0
6 changed files with 455 additions and 1 deletions

View File

@@ -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>();
}
}
}