修改日志,以及添加项目参与人员
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-12-30 11:36:25 +08:00
parent 2a42a921c4
commit b42bf4e201
8 changed files with 18660 additions and 80 deletions
+11 -1
View File
@@ -17,7 +17,6 @@ public class UserLog : BaseAddAuditEntity
#endregion
public string IP { get; set; } = string.Empty;
public string LoginFaildName { get; set; } = string.Empty;
public UserOptType OptType { get; set; }
public string LoginPassword { get; set; } = string.Empty;
@@ -30,6 +29,9 @@ public class UserLog : BaseAddAuditEntity
public string ActionUserName { get; set; }
public string ActionUserType { get; set; }
[MaxLength]
public string JsonObj { get; set; }
@@ -39,10 +41,18 @@ public class UserLog : BaseAddAuditEntity
#endregion
#region
public string LoginFaildName { get; set; } = string.Empty;
[Comment("后续删除")]
public Guid? LoginUserId { get; set; }
[Comment("被操作的人,自己操作的就是自己--后续删除")]
public Guid? OptUserId { get; set; }
#endregion
}