Test.EIImageViewer
parent
d5645f2f59
commit
748f8e34fd
|
@ -8727,7 +8727,7 @@
|
||||||
</summary>
|
</summary>
|
||||||
<returns></returns>
|
<returns></returns>
|
||||||
</member>
|
</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>
|
||||||
验证计算关系
|
验证计算关系
|
||||||
</summary>
|
</summary>
|
||||||
|
|
|
@ -61,7 +61,7 @@ namespace IRaCIS.Core.Application.Services
|
||||||
|
|
||||||
for (int i = 1; i <= u.NumberOfFrames; i++)
|
for (int i = 1; i <= u.NumberOfFrames; i++)
|
||||||
{
|
{
|
||||||
pathList.Add(u.Path+ "?frame=" + i);
|
pathList.Add(u.Path+ "?frame=" + (i - 1));
|
||||||
}
|
}
|
||||||
return pathList;
|
return pathList;
|
||||||
}
|
}
|
||||||
|
|
|
@ -247,7 +247,7 @@ namespace IRaCIS.Core.Application.Services
|
||||||
|
|
||||||
for (int i = 1; i <= u.NumberOfFrames; i++)
|
for (int i = 1; i <= u.NumberOfFrames; i++)
|
||||||
{
|
{
|
||||||
pathList.Add(u.Path + "?frame=" + i);
|
pathList.Add(u.Path + "?frame=" + (i - 1));
|
||||||
}
|
}
|
||||||
return pathList;
|
return pathList;
|
||||||
}
|
}
|
||||||
|
@ -380,7 +380,7 @@ namespace IRaCIS.Core.Application.Services
|
||||||
|
|
||||||
for (int i = 1; i <= u.NumberOfFrames; i++)
|
for (int i = 1; i <= u.NumberOfFrames; i++)
|
||||||
{
|
{
|
||||||
pathList.Add(u.Path + "?frame=" + i);
|
pathList.Add(u.Path + "?frame=" + (i - 1));
|
||||||
}
|
}
|
||||||
return pathList;
|
return pathList;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue