Compare commits

..

No commits in common. "71577d03466d3075374e9d610734ffa9cf9705dd" and "f210799c4d0dedcbdcc962602dfc90493e660855" have entirely different histories.

2 changed files with 0 additions and 9 deletions

View File

@ -213,12 +213,6 @@ namespace IRaCIS.Application.Contracts
public bool ? IsZhiZhun { get; set; } public bool ? IsZhiZhun { get; set; }
public UserStateEnum? UserState { get; set; } public UserStateEnum? UserState { get; set; }
public DateTime? BeginCreateTime { get; set; }
public DateTime? EndCreateTime { get; set; }
public string? EMail { get; set; }
} }
public class UserRoleInfoDTO public class UserRoleInfoDTO

View File

@ -490,9 +490,6 @@ namespace IRaCIS.Application.Services
.WhereIf(!string.IsNullOrWhiteSpace(param.RealName), t => t.FullName.Contains(param.RealName)) .WhereIf(!string.IsNullOrWhiteSpace(param.RealName), t => t.FullName.Contains(param.RealName))
.WhereIf(!string.IsNullOrWhiteSpace(param.Phone), t => t.Phone.Contains(param.Phone)) .WhereIf(!string.IsNullOrWhiteSpace(param.Phone), t => t.Phone.Contains(param.Phone))
.WhereIf(!string.IsNullOrWhiteSpace(param.OrganizationName), t => t.OrganizationName.Contains(param.OrganizationName)) .WhereIf(!string.IsNullOrWhiteSpace(param.OrganizationName), t => t.OrganizationName.Contains(param.OrganizationName))
.WhereIf(!string.IsNullOrWhiteSpace(param.EMail), t => t.EMail.Contains(param.EMail))
.WhereIf(param.BeginCreateTime != null, t => t.CreateTime >= param.BeginCreateTime)
.WhereIf(param.EndCreateTime != null, t => t.CreateTime <= param.EndCreateTime)
.WhereIf(param.UserType != null, t => t.UserTypeId == param.UserType) .WhereIf(param.UserType != null, t => t.UserTypeId == param.UserType)
.WhereIf(param.UserState != null, t => t.Status == param.UserState) .WhereIf(param.UserState != null, t => t.Status == param.UserState)
.WhereIf(param.IsTestUser != null, t => t.IsTestUser == param.IsTestUser) .WhereIf(param.IsTestUser != null, t => t.IsTestUser == param.IsTestUser)