diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs index f230c8eaa..06276c7a6 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs @@ -150,7 +150,7 @@ namespace IRaCIS.Application.Services [HttpPost] public async Task> 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 groupList = _mapper.Map>(qusetionList.Where(x => x.ParentId == null)); groupList.ForEach(x => diff --git a/IRaCIS.Core.Domain.Share/Reading/ReadEnum.cs b/IRaCIS.Core.Domain.Share/Reading/ReadEnum.cs index 9365b2c72..94ef14367 100644 --- a/IRaCIS.Core.Domain.Share/Reading/ReadEnum.cs +++ b/IRaCIS.Core.Domain.Share/Reading/ReadEnum.cs @@ -99,44 +99,6 @@ namespace IRaCIS.Core.Domain.Share Revocation=2, } - ///// - ///// 阅片模块状态 - ///// - //public enum ReadModuleEnum - //{ - // /// - // /// 影像上传 - // /// - // ImageUpload=0, - - // /// - // /// 影像质控 - // /// - // ImageQuality = 1, - - // /// - // /// 一致性核查 - // /// - // ConsistencyCheck = 2, - - // /// - // /// 任务分配 - // /// - // TaskAllocation = 3, - - // /// - // /// 影像阅片 - // /// - // ImageRead = 4, - - // /// - // /// 阅片完成 - // /// - // ReadComplete = 5, - - //} - - /// /// 上传方式 ///