Compare commits
No commits in common. "0b130bbc01670f7f89ad9df5fde0d9d5066b1953" and "75367ae727562ae1b338389c8131567758468b73" have entirely different histories.
0b130bbc01
...
75367ae727
|
|
@ -480,8 +480,6 @@ namespace IRaCIS.Core.Application.Service.Inspection.DTO
|
|||
/// </summary>
|
||||
public string OpByUserName { get; set; } = string.Empty;
|
||||
|
||||
public string? CreateUserName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 阅读片人
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -195,8 +195,6 @@ namespace IRaCIS.Core.Application.Service.Inspection
|
|||
.WhereIf(dto.ModuleType != null, x => x.ModuleTypeId == dto.ModuleType)
|
||||
.WhereIf(!dto.Description.IsNullOrEmpty(), x => x.Description.Contains(dto.Description)|| x.DescriptionCN.Contains(dto.Description))
|
||||
.WhereIf(!dto.OpByUserName.IsNullOrEmpty(), x => x.CreateUserName.Contains(dto.OpByUserName))
|
||||
.WhereIf(!dto.CreateUserName.IsNullOrEmpty(), x => x.CreateUserName.Contains(dto.CreateUserName) || x.CreateUserRealName.Contains(dto.CreateUserName))
|
||||
|
||||
//.WhereIf(!dto.SubjectInfo.IsNullOrEmpty(), x => x.SubjectCode.Contains(dto.SubjectInfo))
|
||||
.WhereIf(dto.IsSign != null, x => x.IsSign == dto.IsSign);
|
||||
#endregion
|
||||
|
|
|
|||
Loading…
Reference in New Issue