Compare commits

...

2 Commits

Author SHA1 Message Date
he 40669a14fe Merge branch 'Test.IRC' of http://192.168.3.68:2000/XCKJ/irc-netcore-api into Test.IRC
continuous-integration/drone/push Build is passing Details
2023-12-21 16:23:44 +08:00
he f55c52d99e 代码修改 2023-12-21 16:23:34 +08:00
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ namespace IRaCIS.Application.Services
x.IsAnalysisCreate == taskInfo.IsAnalysisCreate &&
x.IsSelfAnalysis == taskInfo.IsSelfAnalysis &&
x.VisitTaskNum < taskInfo.VisitTaskNum
).OrderBy(x => x.ArmEnum)
).OrderByDescending(x=>x.VisitTaskNum).OrderBy(x => x.ArmEnum)
.FirstNotNullAsync();
}