修改一版

Uat_Study
he 2022-10-13 15:02:58 +08:00
parent 1a494bb853
commit 268d965cb5
3 changed files with 8 additions and 1 deletions

View File

@ -60,6 +60,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public string QuestionName { get; set; } public string QuestionName { get; set; }
public bool IsCanEditPosition { get; set; } = false;
public string SplitOrMergeLesionName { get; set; } public string SplitOrMergeLesionName { get; set; }

View File

@ -365,6 +365,10 @@ namespace IRaCIS.Application.Services
}
else
{
return ResponseOutput.NotOk("请先添加全局阅片");
} }
break; break;
} }

View File

@ -596,7 +596,8 @@ namespace IRaCIS.Application.Services
QuestionName = question.OrderMark + x.RowIndex.GetLesionMark(), QuestionName = question.OrderMark + x.RowIndex.GetLesionMark(),
SplitOrMergeLesionName = x.MergeName.IsNullOrEmpty() ? x.SplitName : x.MergeName, SplitOrMergeLesionName = x.MergeName.IsNullOrEmpty() ? x.SplitName : x.MergeName,
SplitOrMergeType = x.SplitOrMergeType, SplitOrMergeType = x.SplitOrMergeType,
RowIndex=x.RowIndex, IsCanEditPosition=x.IsCanEditPosition,
RowIndex =x.RowIndex,
}).ToList(); }).ToList();