feat: 完成审计日志模块搭建

This commit is contained in:
陈淳
2023-12-28 15:23:00 +08:00
parent a18e71dc9b
commit 470c908453
6 changed files with 578 additions and 329 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Volo.Abp.AuditLogging;
namespace Yi.AuditLogging.SqlSugarCore.Entities
{
public class AuditLogEntity : AuditLog
{
public AuditLogEntity() { }
}
}