Test.EIImageViewer
parent
b6e5bd91f9
commit
f564720489
|
@ -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)];
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue