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

This commit is contained in:
陈淳
2024-01-23 11:52:49 +08:00
parent ba9ac0fa5d
commit 96ae77e5ab
14 changed files with 255 additions and 325 deletions

View File

@@ -0,0 +1,10 @@
using Yi.Framework.AuditLogging.Domain.Entities;
namespace Yi.Framework.AuditLogging.Domain;
public class EntityChangeWithUsername
{
public EntityChangeEntity EntityChange { get; set; }
public string UserName { get; set; }
}