Compare commits
No commits in common. "7c14e9e7a336e43352b431fb5461bb56680c8295" and "867c7b17529c900c8a81d34ca587991531476722" have entirely different histories.
7c14e9e7a3
...
867c7b1752
|
|
@ -220,8 +220,6 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
|
|
||||||
public int FailedFileCount { get; set; }
|
public int FailedFileCount { get; set; }
|
||||||
|
|
||||||
public string RecordPath { get; set; }
|
|
||||||
|
|
||||||
public AddOrUpdateStudyDto Study { get; set; }
|
public AddOrUpdateStudyDto Study { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -151,8 +151,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
|
||||||
studyMonitor.UploadFinishedTime = DateTime.Now;
|
studyMonitor.UploadFinishedTime = DateTime.Now;
|
||||||
studyMonitor.ArchiveFinishedTime = DateTime.Now;
|
studyMonitor.ArchiveFinishedTime = DateTime.Now;
|
||||||
studyMonitor.FailedFileCount = incommand.FailedFileCount;
|
studyMonitor.FailedFileCount = incommand.FailedFileCount;
|
||||||
studyMonitor.IsSuccess = incommand.FailedFileCount==0;
|
studyMonitor.IsSuccess = true;
|
||||||
studyMonitor.RecordPath=incommand.RecordPath;
|
|
||||||
|
|
||||||
//上传
|
//上传
|
||||||
if (studyMonitor.IsDicomReUpload == false)
|
if (studyMonitor.IsDicomReUpload == false)
|
||||||
|
|
|
||||||
|
|
@ -87,8 +87,6 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
|
|
||||||
public string Note = string.Empty;
|
public string Note = string.Empty;
|
||||||
|
|
||||||
public string RecordPath { get; set; }
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue