Test.EIImageViewer
parent
d5645f2f59
commit
748f8e34fd
|
@ -8727,7 +8727,7 @@
|
|||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IRaCIS.Application.Services.ReadingQuestionService.VerifyCalculateRelation(System.Collections.Generic.List{IRaCIS.Core.Application.Service.Reading.Dto.CalculateRelationDto},System.Guid,System.Guid)">
|
||||
<member name="M:IRaCIS.Application.Services.ReadingQuestionService.VerifyCalculateRelation(System.Collections.Generic.List{IRaCIS.Core.Application.Service.Reading.Dto.CalculateRelationDto},System.Guid,System.Guid,System.Int32)">
|
||||
<summary>
|
||||
验证计算关系
|
||||
</summary>
|
||||
|
|
|
@ -61,7 +61,7 @@ namespace IRaCIS.Core.Application.Services
|
|||
|
||||
for (int i = 1; i <= u.NumberOfFrames; i++)
|
||||
{
|
||||
pathList.Add(u.Path+ "?frame=" + i);
|
||||
pathList.Add(u.Path+ "?frame=" + (i - 1));
|
||||
}
|
||||
return pathList;
|
||||
}
|
||||
|
|
|
@ -247,7 +247,7 @@ namespace IRaCIS.Core.Application.Services
|
|||
|
||||
for (int i = 1; i <= u.NumberOfFrames; i++)
|
||||
{
|
||||
pathList.Add(u.Path + "?frame=" + i);
|
||||
pathList.Add(u.Path + "?frame=" + (i - 1));
|
||||
}
|
||||
return pathList;
|
||||
}
|
||||
|
@ -380,7 +380,7 @@ namespace IRaCIS.Core.Application.Services
|
|||
|
||||
for (int i = 1; i <= u.NumberOfFrames; i++)
|
||||
{
|
||||
pathList.Add(u.Path + "?frame=" + i);
|
||||
pathList.Add(u.Path + "?frame=" + (i - 1));
|
||||
}
|
||||
return pathList;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue