非dicom 匿名图像 以及用户重置密码

This commit is contained in:
2026-06-29 14:36:55 +08:00
parent 88793cf011
commit 9fd7d9928a
13 changed files with 22658 additions and 7 deletions
@@ -749,6 +749,17 @@ namespace IRaCIS.Core.Application.Contracts
public long? FileSize { get; set; }
}
public class DownloadFileDto
{
public Guid Id { get; set; }
public string Path { get; set; }
public string FileName { get; set; }
public string FileType { get; set; }
}
public class DownloadNoneDicomStudyDto
{
public string Modality { get; set; }
@@ -1164,6 +1175,20 @@ namespace IRaCIS.Core.Application.Contracts
public List<MaskRegion> MaskRegionList { get; set; }
}
public class NoneDicomStudyMaskImageCommand
{
public Guid? NodicomStudyId { get; set; }
public List<Guid>? NoneDicomStudyFileIdList { get; set; }
public List<MaskRegion> MaskRegionList { get; set; }
}
public class NoneDicomStudyUndoMaskImageCommand
{
public Guid? NodicomStudyId { get; set; }
public List<Guid>? NoneDicomStudyFileIdList { get; set; }
}
public class StudyUndoMaskImageCommand