Test.EIImageViewer
he 2022-12-09 11:28:23 +08:00
parent b6e5bd91f9
commit f564720489
1 changed files with 2 additions and 2 deletions

View File

@ -180,11 +180,11 @@ namespace IRaCIS.Core.Domain.Models
};
if (RowIndex % 1 == 0)
{
return decimal.ToInt32(RowIndex).ToString().PadLeft(2, '0');
return this.OrderMark+ decimal.ToInt32(RowIndex).ToString().PadLeft(2, '0');
}
else
{
return Math.Floor(RowIndex).ToString().PadLeft(2, '0') + splitLesionDic[decimal.ToInt32((RowIndex % 1) * 100)];
return this.OrderMark + Math.Floor(RowIndex).ToString().PadLeft(2, '0') + splitLesionDic[decimal.ToInt32((RowIndex % 1) * 100)];
}
}