Compare commits
No commits in common. "71577d03466d3075374e9d610734ffa9cf9705dd" and "f210799c4d0dedcbdcc962602dfc90493e660855" have entirely different histories.
71577d0346
...
f210799c4d
|
|
@ -213,12 +213,6 @@ namespace IRaCIS.Application.Contracts
|
|||
|
||||
public bool ? IsZhiZhun { 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
|
||||
|
|
|
|||
|
|
@ -490,9 +490,6 @@ namespace IRaCIS.Application.Services
|
|||
.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.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.UserState != null, t => t.Status == param.UserState)
|
||||
.WhereIf(param.IsTestUser != null, t => t.IsTestUser == param.IsTestUser)
|
||||
|
|
|
|||
Loading…
Reference in New Issue