Compare commits

...

2 Commits

Author SHA1 Message Date
hang 58eb59bd61 Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is running Details
2026-04-23 14:55:16 +08:00
hang 104d44d757 修改模型方法 2026-04-23 14:55:15 +08:00
2 changed files with 5 additions and 3 deletions

View File

@ -101,7 +101,7 @@ public static class DicomSliceSorterFast
#endregion
public sealed class MaskRegion
public class MaskRegion
{
public int X { get; }
public int Y { get; }

View File

@ -1393,10 +1393,12 @@ namespace IRaCIS.Core.Application.Image.QA
// 获取当前缓存中的访视Id集合如果没有则创建空集合
var skippedVisits = await _fusionCache.GetOrDefaultAsync<List<Guid>>(CacheKeys.UserQCSkipTask(_userInfo.UserRoleId), new List<Guid>() { inDto.SubjectVisitId });
var skippedVisits = await _fusionCache.GetOrDefaultAsync<List<Guid>>(CacheKeys.UserQCSkipTask(_userInfo.UserRoleId), new List<Guid>() { });
//跳过当前访视
if (inDto.IsSkipCurrentVisit)
{
{
skippedVisits.Add(inDto.SubjectVisitId);
currentActionList = currentActionList.Where(t => !skippedVisits.Contains(t.SubjectVisitId)).ToList();
}