Uat_Study
parent
b79e5c1e09
commit
1809869dbf
|
@ -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 =>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue