提交阿里云
parent
6af7c79adc
commit
ce024cae7a
|
@ -237,11 +237,7 @@ namespace IRaCIS.Core.Application.Services
|
||||||
.SelectMany(u =>
|
.SelectMany(u =>
|
||||||
{
|
{
|
||||||
|
|
||||||
if (u.NumberOfFrames == 1)
|
if (u.NumberOfFrames > 1)
|
||||||
{
|
|
||||||
return new List<string> { u.Path };
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
var pathList = new List<string>();
|
var pathList = new List<string>();
|
||||||
|
|
||||||
|
@ -251,6 +247,11 @@ namespace IRaCIS.Core.Application.Services
|
||||||
}
|
}
|
||||||
return pathList;
|
return pathList;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return new List<string> { u.Path };
|
||||||
|
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.ToList();
|
.ToList();
|
||||||
|
|
||||||
|
|
|
@ -62,3 +62,5 @@ delete ReadingTableQuestionSystem where QuestionMark=3
|
||||||
go
|
go
|
||||||
|
|
||||||
|
|
||||||
|
--发布之前备份 前后端代码和完整的数据库
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue