Uat_Study
he 2022-11-04 16:44:23 +08:00
parent fbc9955715
commit b273de910b
1 changed files with 2 additions and 2 deletions

View File

@ -887,12 +887,12 @@ namespace IRaCIS.Application.Services
Dictionary<CriterionType, string> errorMsgDic = new Dictionary<CriterionType, string>()
{
{CriterionType.RECIST1Pointt1, "按照RECIST1.1的相关规则,同一器官的靶病灶数量不超过"},
{CriterionType.RECIST1Pointt1, $"按照RECIST1.1的相关规则,同一器官的靶病灶数量不超过{item.MaxRowCount.Value}个,请确认!!"},
};
string msg = string.Empty;
try
{
msg = $"{ errorMsgDic[criterionInfo.CriterionType]}{item.MaxRowCount.Value}个,请确认!!";
msg = $"{ errorMsgDic[criterionInfo.CriterionType]}";
}
catch (Exception)
{