Uat_Study
he 2022-09-20 16:51:36 +08:00
parent 14f8093529
commit 396e83bfae
3 changed files with 7 additions and 4 deletions

View File

@ -131,7 +131,7 @@ namespace IRaCIS.Core.Application.ViewModel
/// <summary>
/// 是否是淋巴结
/// </summary>
public bool IsLymphNodes { get; set; }
public IsLymph IsLymphNodes { get; set; }
/// <summary>
/// 器官类型
@ -181,6 +181,8 @@ namespace IRaCIS.Core.Application.ViewModel
public LesionType? LesionType { get; set; }
public bool? IsEnable { get; set; }
public IsLymph? IsLymphNodes { get; set; }
}
public class GetTrialCheckOrganList : GetTrialOrganListOutDto
@ -216,7 +218,7 @@ namespace IRaCIS.Core.Application.ViewModel
/// <summary>
/// 是否是淋巴结
/// </summary>
public bool IsLymphNodes { get; set; }
public IsLymph IsLymphNodes { get; set; }
}
@ -261,7 +263,7 @@ namespace IRaCIS.Core.Application.ViewModel
/// <summary>
/// 是否是淋巴结
/// </summary>
public bool IsLymphNodes { get; set; }
public IsLymph IsLymphNodes { get; set; }
/// <summary>
/// 病灶类型

View File

@ -250,6 +250,7 @@ namespace IRaCIS.Core.Application.Service
}
var organInfoQueryable = from data in _organInfoRepository.WhereIf(inDto.OrganType != null, x => x.OrganType == inDto.OrganType)
.WhereIf(inDto.IsLymphNodes!=null,x=>x.IsLymphNodes==inDto.IsLymphNodes)
join trialData in _organTrialInfoRepository.WhereIf(inDto.IsEnable != null, x => x.IsEnable == inDto.IsEnable)
.WhereIf(inDto.LesionType != null, x => organs.Contains(x.OrganType))
.WhereIf(inDto.IsEnable != null, x => x.IsEnable == inDto.IsEnable)

View File

@ -41,7 +41,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 是否是淋巴结
/// </summary>
public bool IsLymphNodes { get; set; }
public IsLymph IsLymphNodes { get; set; }
/// <summary>
/// 器官类型