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 passing Details

Test_IRC_Net10
he 2026-04-23 15:46:05 +08:00
commit 3716ad2f62
1 changed files with 3 additions and 1 deletions

View File

@ -113,7 +113,9 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
await _oSSService.UploadToOSSAsync(outPutStream, prefix, maskPath); await _oSSService.UploadToOSSAsync(outPutStream, prefix, maskPath);
await _dicomInstanceRepository.BatchUpdateNoTrackingAsync(t => t.Id == item.Id, u => new DicomInstance() { IsMasked = true }); var newPath = path + ".MaskImage";
await _dicomInstanceRepository.BatchUpdateNoTrackingAsync(t => t.Id == item.Id, u => new DicomInstance() { Path= newPath, IsMasked = true });
} }
catch (Exception ex) catch (Exception ex)
{ {