修改路径

Test_IRC_Net10
hang 2026-04-23 15:31:25 +08:00
parent 58eb59bd61
commit b59415e461
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)
{ {