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