账号最有一次登录时间增加查询条件
continuous-integration/drone/push Build is passing Details

IRC_NewDev
hang 2024-10-25 11:07:27 +08:00
parent 08a916d699
commit 94aa943410
2 changed files with 8 additions and 0 deletions

View File

@ -165,6 +165,8 @@ namespace IRaCIS.Application.Contracts
public string PositionName { get; set; } = String.Empty;
public bool IsTestUser { get; set; }
public DateTime? LastLoginTime { get; set; }
}
/// <summary>
@ -225,6 +227,10 @@ namespace IRaCIS.Application.Contracts
public DateTime? EndCreateTime { get; set; }
public string? EMail { get; set; }
public DateTime? BeginLastLoginTime { get; set; }
public DateTime? EndLastLoginTime { get; set; }
}
public class UserRoleInfoDTO

View File

@ -461,6 +461,8 @@ namespace IRaCIS.Core.Application.Service
.WhereIf(!string.IsNullOrWhiteSpace(inQuery.EMail), t => t.EMail.Contains(inQuery.EMail))
.WhereIf(inQuery.BeginCreateTime != null, t => t.CreateTime >= inQuery.BeginCreateTime)
.WhereIf(inQuery.EndCreateTime != null, t => t.CreateTime <= inQuery.EndCreateTime)
.WhereIf(inQuery.BeginLastLoginTime != null, t => t.LastLoginTime >= inQuery.BeginLastLoginTime)
.WhereIf(inQuery.EndLastLoginTime != null, t => t.LastLoginTime <= inQuery.EndLastLoginTime)
.WhereIf(inQuery.UserType != null, t => t.UserTypeId == inQuery.UserType)
.WhereIf(inQuery.UserState != null, t => t.Status == inQuery.UserState)
.WhereIf(inQuery.IsTestUser != null, t => t.IsTestUser == inQuery.IsTestUser)