修改一版
parent
1a494bb853
commit
268d965cb5
|
@ -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; }
|
||||||
|
|
||||||
|
|
|
@ -365,6 +365,10 @@ namespace IRaCIS.Application.Services
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return ResponseOutput.NotOk("请先添加全局阅片");
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -596,6 +596,7 @@ 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,
|
||||||
|
IsCanEditPosition=x.IsCanEditPosition,
|
||||||
RowIndex =x.RowIndex,
|
RowIndex =x.RowIndex,
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue