This commit is contained in:
2026-07-24 12:42:51 +08:00 Unverified
commit 67905dfa16
56 changed files with 7630 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
using Jiaowu.Api.Domain.Common;
namespace Jiaowu.Api.Domain.System;
public sealed class AuditLog : EntityBase
{
public Guid? UserId { get; set; }
public string? UserName { get; set; }
public required string Method { get; set; }
public required string Path { get; set; }
public int StatusCode { get; set; }
public string? IpAddress { get; set; }
}