Compare commits

..

No commits in common. "3888b6f5d2819d714684ec4ed03bc0ccefc6f4b8" and "af160e3c96f416ece558e363c2513ec5a2877969" have entirely different histories.

1 changed files with 1 additions and 3 deletions

View File

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