hang - 用户登录日志修改-01

This commit is contained in:
2023-07-13 10:49:09 +08:00
parent a52aac876a
commit 242bae10d1
6 changed files with 89 additions and 147 deletions
@@ -11,15 +11,22 @@ namespace IRaCIS.Core.Application.ViewModel
/// <summary> UserLogView 列表视图模型 </summary>
public class UserLogView: UserLogAddOrEdit
{
public Guid? Id { get; set; }
public string IP { get; set; }
public string LoginFaildName { get; set; }
public int OptType { get; set; }
public string UserRealName { get; set; }
public string UserName { get; set; }
public string LoginUserName { get; set; }
public UserType UserTypeEnum { get; set; }
public UserType LoginUserTypeEnum { get; set; }
public bool IsSuccess { get; set; }
public string OptUserName { get; set; }
public UserType OptUserTypeEnum { get; set; }
}
///<summary>UserLogQuery 列表查询参数模型</summary>
@@ -31,7 +38,7 @@ namespace IRaCIS.Core.Application.ViewModel
public string? IP { get; set; }
public string? LoginName { get; set; }
public string? LoginFaildName { get; set; }
public DateTime? BeginDate { get; set; }
@@ -43,12 +50,7 @@ namespace IRaCIS.Core.Application.ViewModel
///<summary> UserLogAddOrEdit 列表查询参数模型</summary>
public class UserLogAddOrEdit
{
public Guid? Id { get; set; }
public string IP { get; set; }
public string LoginName { get; set; }
public int OptType { get; set; }
public string LoginPassword { get; set; }
}