Uat_Study
he 2022-06-17 17:49:30 +08:00
parent b79e5c1e09
commit 1809869dbf
2 changed files with 1 additions and 39 deletions

View File

@ -150,7 +150,7 @@ namespace IRaCIS.Application.Services
[HttpPost] [HttpPost]
public async Task<List<GetTrialReadingQuestionOutDto>> GetTrialReadingQuestion(GetTrialReadingQuestionInDto inDto) public async Task<List<GetTrialReadingQuestionOutDto>> GetTrialReadingQuestion(GetTrialReadingQuestionInDto inDto)
{ {
var qusetionList = await _readingQuestionTrialRepository.Where(x => x.ReadingQuestionCriterionTrialId == inDto.ReadingQuestionCriterionTrialId).ToListAsync(); var qusetionList = await _readingQuestionTrialRepository.Where(x => x.ReadingQuestionCriterionTrialId == inDto.ReadingQuestionCriterionTrialId).OrderBy(x=>x.ShowOrder).ToListAsync();
List<GetTrialReadingQuestionOutDto> groupList = _mapper.Map<List<GetTrialReadingQuestionOutDto>>(qusetionList.Where(x => x.ParentId == null)); List<GetTrialReadingQuestionOutDto> groupList = _mapper.Map<List<GetTrialReadingQuestionOutDto>>(qusetionList.Where(x => x.ParentId == null));
groupList.ForEach(x => groupList.ForEach(x =>

View File

@ -99,44 +99,6 @@ namespace IRaCIS.Core.Domain.Share
Revocation=2, Revocation=2,
} }
///// <summary>
///// 阅片模块状态
///// </summary>
//public enum ReadModuleEnum
//{
// /// <summary>
// /// 影像上传
// /// </summary>
// ImageUpload=0,
// /// <summary>
// /// 影像质控
// /// </summary>
// ImageQuality = 1,
// /// <summary>
// /// 一致性核查
// /// </summary>
// ConsistencyCheck = 2,
// /// <summary>
// /// 任务分配
// /// </summary>
// TaskAllocation = 3,
// /// <summary>
// /// 影像阅片
// /// </summary>
// ImageRead = 4,
// /// <summary>
// /// 阅片完成
// /// </summary>
// ReadComplete = 5,
//}
/// <summary> /// <summary>
/// 上传方式 /// 上传方式
/// </summary> /// </summary>